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