Package io.scanbot.sdk.geometry
Class PointF
- java.lang.Object
-
- io.scanbot.sdk.geometry.PointF
-
public class PointF extends java.lang.ObjectRepresents a point with float coordinates in 2D space.
-
-
Constructor Summary
Constructors Constructor Description PointF(float x, float y)Constructs a point with given coordinates.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description floatgetX()Returns the x-coordinate of the point.floatgetY()Returns the y-coordinate of the point.voidsetX(float x)Sets the x-coordinate of the point.voidsetY(float y)Sets the y-coordinate of the point.
-
-
-
Method Detail
-
getY
public float getY()
Returns the y-coordinate of the point.- Returns:
- y-coordinate
-
setY
public void setY(float y)
Sets the y-coordinate of the point.- Parameters:
y- y-coordinate
-
getX
public float getX()
Returns the x-coordinate of the point.- Returns:
- x-coordinate
-
setX
public void setX(float x)
Sets the x-coordinate of the point.- Parameters:
x- x-coordinate
-
-