Class: Aws::Comprehend::Types::Point
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::Point
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-comprehend/types.rb
Overview
The X and Y coordinates of a point on a document page.
For additional information, see [Point] in the Amazon Textract API reference.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#x ⇒ Float
The value of the X coordinate for a point on a polygon.
-
#y ⇒ Float
The value of the Y coordinate for a point on a polygon.
Instance Attribute Details
#x ⇒ Float
The value of the X coordinate for a point on a polygon
6407 6408 6409 6410 6411 6412 |
# File 'lib/aws-sdk-comprehend/types.rb', line 6407 class Point < Struct.new( :x, :y) SENSITIVE = [] include Aws::Structure end |
#y ⇒ Float
The value of the Y coordinate for a point on a polygon
6407 6408 6409 6410 6411 6412 |
# File 'lib/aws-sdk-comprehend/types.rb', line 6407 class Point < Struct.new( :x, :y) SENSITIVE = [] include Aws::Structure end |