PointF
Overview
PointF is a class in Aspose.Slides FOSS for Java.
Represents a 2D point with float coordinates.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
x | float | Read | Gets the X coordinate. |
y | float | Read | Gets the Y coordinate. |
empty | boolean | Read | Returns {@code true} if both coordinates are zero. |
EMPTY | PointF | Read | Empty point with coordinates (0, 0). |
Methods
| Signature | Description |
|---|---|
PointF(x: float, y: float) | Initializes a new instance of PointF with the specified coordinates. |
PointF() | Initializes a new instance of PointF with coordinates (0, 0). |
getX() → float | Gets the X coordinate. |
setX(x: float) | Sets the X coordinate. |
getY() → float | Gets the Y coordinate. |
setY(y: float) | Sets the Y coordinate. |
isEmpty() → boolean | Returns {@code true} if both coordinates are zero. |
equals(obj: Object) → boolean | Determines whether the given object is a PointF with equal coordinates |
hashCode() → int | Returns a hash code based on the point’s coordinates |
toString() → String | Returns a string representation of the point’s coordinates |