Point

Overview

Point is a class in Aspose.Pdf FOSS for Java.

Represents a point in 2D space with double-precision coordinates.

Properties

NameTypeAccessDescription
xdoubleReadReturns the x coordinate.
ydoubleReadReturns the y coordinate.

Methods

SignatureDescription
Point(x: double, y: double)Creates a point at the specified coordinates.
getX()doubleReturns the x coordinate.
setX(x: double)Sets the x coordinate.
getY()doubleReturns the y coordinate.
setY(y: double)Sets the y coordinate.
toString()StringReturns a string representation of this point.

See Also