Point
Overview
Point is a class in Aspose.Pdf FOSS for Java.
Represents a point in 2D space with double-precision coordinates.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
x | double | Read | Returns the x coordinate. |
y | double | Read | Returns the y coordinate. |
Methods
| Signature | Description |
|---|---|
Point(x: double, y: double) | Creates a point at the specified coordinates. |
getX() → double | Returns the x coordinate. |
setX(x: double) | Sets the x coordinate. |
getY() → double | Returns the y coordinate. |
setY(y: double) | Sets the y coordinate. |
toString() → String | Returns a string representation of this point. |