Point Class
- java.
lang. Object - com.
azure. ai. formrecognizer. models. Point
- com.
public final class Point
Represents the x and y coordinates of a point.
Constructor Summary
Constructor | Description |
---|---|
Point(float xCoordinate, float yCoordinate) |
Creates a Point object. |
Method Summary
Modifier and Type | Method and Description |
---|---|
float |
getX()
Gets the x-coordinate value. |
float |
getY()
Gets the y-coordinate value. |
Methods inherited from java.lang.Object
Constructor Details
Point
public Point(float xCoordinate, float yCoordinate)
Creates a Point object.
Parameters:
xCoordinate
- The x-axis point coordinate.
yCoordinate
- The y-axis point coordinate.
Method Details
getX
public float getX()
Gets the x-coordinate value.
Returns:
The x-axis coordinate value.
getY
public float getY()
Gets the y-coordinate value.
Returns:
The y-axis coordinate value.
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Azure SDK for Java