|
static void | Equals (ref Vector2 a, ref Vector2 b, out Boolean r) |
|
static void | ApproximateEquals (ref Vector2 v1, ref Vector2 v2, out Boolean r) |
|
static void | Add (ref Vector2 a, ref Vector2 b, out Vector2 r) |
|
static void | Subtract (ref Vector2 a, ref Vector2 b, out Vector2 r) |
|
static void | Negate (ref Vector2 v, out Vector2 r) |
|
static void | Multiply (ref Vector2 a, ref Vector2 b, out Vector2 r) |
|
static void | Multiply (ref Vector2 v, ref Single f, out Vector2 r) |
|
static void | Divide (ref Vector2 a, ref Vector2 b, out Vector2 r) |
|
static void | Divide (ref Vector2 v, ref Single d, out Vector2 r) |
|
static Boolean | operator== (Vector2 a, Vector2 b) |
|
static Boolean | operator!= (Vector2 a, Vector2 b) |
|
static Vector2 | operator+ (Vector2 a, Vector2 b) |
|
static Vector2 | operator- (Vector2 a, Vector2 b) |
|
static Vector2 | operator- (Vector2 v) |
|
static Vector2 | operator* (Vector2 a, Vector2 b) |
|
static Vector2 | operator* (Vector2 v, Single f) |
|
static Vector2 | operator* (Single f, Vector2 v) |
|
static Vector2 | operator/ (Vector2 a, Vector2 b) |
|
static Vector2 | operator/ (Vector2 a, Single d) |
|
static Single | operator| (Vector2 a, Vector2 d) |
|
static Vector2 | operator~ (Vector2 v) |
|
static Boolean | Equals (Vector2 a, Vector2 b) |
|
static Boolean | ApproximateEquals (Vector2 a, Vector2 b) |
|
static Vector2 | Add (Vector2 a, Vector2 b) |
|
static Vector2 | Subtract (Vector2 a, Vector2 b) |
|
static Vector2 | Negate (Vector2 v) |
|
static Vector2 | Multiply (Vector2 a, Vector2 b) |
|
static Vector2 | Multiply (Vector2 v, Single f) |
|
static Vector2 | Divide (Vector2 a, Vector2 b) |
|
static Vector2 | Divide (Vector2 a, Single d) |
|
static void | Min (ref Vector2 a, ref Vector2 b, out Vector2 r) |
|
static void | Max (ref Vector2 a, ref Vector2 b, out Vector2 r) |
|
static void | Clamp (ref Vector2 v, ref Vector2 min, ref Vector2 max, out Vector2 r) |
|
static void | Clamp (ref Vector2 v, ref Single min, ref Single max, out Vector2 r) |
|
static void | Lerp (ref Vector2 a, ref Vector2 b, Single amount, out Vector2 r) |
|
static void | IsUnit (ref Vector2 vector, out Boolean r) |
|
static Vector2 | Min (Vector2 a, Vector2 b) |
|
static Vector2 | Max (Vector2 a, Vector2 b) |
|
static Vector2 | Clamp (Vector2 v, Vector2 min, Vector2 max) |
|
static Vector2 | Lerp (Vector2 a, Vector2 b, Single amount) |
|
static Boolean | IsUnit (Vector2 v) |
|
static void | SmoothStep (ref Vector2 v1, ref Vector2 v2, Single amount, out Vector2 r) |
|
static void | CatmullRom (ref Vector2 v1, ref Vector2 v2, ref Vector2 v3, ref Vector2 v4, Single amount, out Vector2 r) |
|
static void | Hermite (ref Vector2 v1, ref Vector2 tangent1, ref Vector2 v2, ref Vector2 tangent2, Single amount, out Vector2 r) |
|
static Vector2 | SmoothStep (Vector2 v1, Vector2 v2, Single amount) |
|
static Vector2 | CatmullRom (Vector2 v1, Vector2 v2, Vector2 v3, Vector2 v4, Single amount) |
|
static Vector2 | Hermite (Vector2 v1, Vector2 tangent1, Vector2 v2, Vector2 tangent2, Single amount) |
|
static void | Distance (ref Vector2 a, ref Vector2 b, out Single r) |
|
static void | DistanceSquared (ref Vector2 a, ref Vector2 b, out Single r) |
|
static void | Dot (ref Vector2 a, ref Vector2 b, out Single r) |
|
static void | Normalise (ref Vector2 vector, out Vector2 r) |
|
static void | Reflect (ref Vector2 vector, ref Vector2 normal, out Vector2 r) |
|
static void | Length (ref Vector2 vector, out Single r) |
|
static void | LengthSquared (ref Vector2 vector, out Single r) |
|
static Single | Distance (Vector2 a, Vector2 b) |
|
static Single | DistanceSquared (Vector2 a, Vector2 b) |
|
static Single | Dot (Vector2 a, Vector2 b) |
|
static Vector2 | Normalise (Vector2 v) |
|
static Vector2 | Reflect (Vector2 v, Vector2 normal) |
|
static Single | Length (Vector2 v) |
|
static Single | LengthSquared (Vector2 v) |
|
Single precision Vector2.