Package arc.math.geom
Interface Position
- All Known Implementing Classes:
Vec2
public interface Position
Represents a point in 2-D space.
-
Method Summary
-
Method Details
-
getX
float getX() -
getY
float getY() -
angleTo
-
angleTo
default float angleTo(float x, float y) -
dst2
-
dst
-
dst
default float dst(float x, float y) -
dst2
default float dst2(float x, float y) -
within
-
within
default boolean within(float x, float y, float dst)
-