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