Package net.runelite.api
Class Point
- java.lang.Object
-
- net.runelite.api.Point
-
public final class Point extends Object
A two-dimensional coordinate on the canvas.
-
-
Constructor Summary
Constructors Constructor Description Point(int x, int y)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
distanceTo(Point other)
Gets the distance between this point and another.boolean
equals(Object o)
int
getX()
int
getY()
int
hashCode()
String
toString()
-
-
-
Method Detail
-
distanceTo
public int distanceTo(Point other)
Gets the distance between this point and another.- Parameters:
other
- other point- Returns:
- the distance
-
getX
public int getX()
-
getY
public int getY()
-
-