Home | History | Annotate | Download | only in replicaisland

Lines Matching full:vector2

22 public final class Vector2 extends AllocationGuard {
26 public static final Vector2 ZERO = new Vector2(0, 0);
28 public Vector2() {
32 public Vector2(float xValue, float yValue) {
36 public Vector2(Vector2 other) {
40 public final void add(Vector2 other) {
50 public final void subtract(Vector2 other) {
60 public final void multiply(Vector2 other) {
72 public final void set(Vector2 other) {
82 public final float dot(Vector2 other) {
94 public final float distance2(Vector2 other) {