Abacus
Public Member Functions | Static Public Member Functions | Public Attributes | Static Public Attributes | Properties | List of all members
Abacus.SinglePrecision.Vector2 Struct Reference

Single precision Vector2. More...

Inheritance diagram for Abacus.SinglePrecision.Vector2:
Inheritance graph
[legend]
Collaboration diagram for Abacus.SinglePrecision.Vector2:
Collaboration graph
[legend]

Public Member Functions

 Vector2 (Single x, Single y)
 
override String ToString ()
 
override Int32 GetHashCode ()
 
override Boolean Equals (Object obj)
 
Boolean Equals (Vector2 other)
 
Boolean ApproximateEquals (Vector2 other)
 
Boolean IsUnit ()
 
Vector2 Clamp (Vector2 min, Vector2 max)
 
Vector2 Clamp (Single min, Single max)
 
Single Length ()
 
Single LengthSquared ()
 
Vector2 Normalise ()
 

Static Public Member Functions

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)
 

Public Attributes

Single X
 
Single Y
 

Static Public Attributes

static readonly Vector2 zero
 
static readonly Vector2 one
 
static readonly Vector2 unitX
 
static readonly Vector2 unitY
 

Properties

static Vector2 Zero [get]
 
static Vector2 One [get]
 
static Vector2 UnitX [get]
 
static Vector2 UnitY [get]
 

Detailed Description

Single precision Vector2.


The documentation for this struct was generated from the following file: