Abacus
Public Member Functions | Static Public Member Functions | Public Attributes | Static Public Attributes | Properties | List of all members
Abacus.Fixed32Precision.Vector3 Struct Reference

Fixed32 precision Vector3. More...

Inheritance diagram for Abacus.Fixed32Precision.Vector3:
Inheritance graph
[legend]
Collaboration diagram for Abacus.Fixed32Precision.Vector3:
Collaboration graph
[legend]

Public Member Functions

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

Static Public Member Functions

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

Public Attributes

Fixed32 X
 
Fixed32 Y
 
Fixed32 Z
 

Static Public Attributes

static Vector3 zero
 
static Vector3 one
 
static Vector3 unitX
 
static Vector3 unitY
 
static Vector3 unitZ
 
static Vector3 up
 
static Vector3 down
 
static Vector3 right
 
static Vector3 left
 
static Vector3 forward
 
static Vector3 backward
 

Properties

static Vector3 Zero [get]
 
static Vector3 One [get]
 
static Vector3 UnitX [get]
 
static Vector3 UnitY [get]
 
static Vector3 UnitZ [get]
 
static Vector3 Up [get]
 
static Vector3 Down [get]
 
static Vector3 Right [get]
 
static Vector3 Left [get]
 
static Vector3 Forward [get]
 
static Vector3 Backward [get]
 

Detailed Description

Fixed32 precision Vector3.


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