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

Fixed64 precision Vector3. More...

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

Public Member Functions

 Vector3 (Fixed64 x, Fixed64 y, Fixed64 z)
 
 Vector3 (Vector2 value, Fixed64 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 (Fixed64 min, Fixed64 max)
 
Fixed64 Length ()
 
Fixed64 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 Fixed64 f, out Vector3 r)
 
static void Divide (ref Vector3 a, ref Vector3 b, out Vector3 r)
 
static void Divide (ref Vector3 a, ref Fixed64 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, Fixed64 f)
 
static Vector3 operator* (Fixed64 f, Vector3 v)
 
static Vector3 operator/ (Vector3 a, Vector3 b)
 
static Vector3 operator/ (Vector3 a, Fixed64 d)
 
static Vector3 operator^ (Vector3 a, Vector3 d)
 
static Fixed64 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, Fixed64 f)
 
static Vector3 Divide (Vector3 a, Vector3 b)
 
static Vector3 Divide (Vector3 a, Fixed64 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 Fixed64 min, ref Fixed64 max, out Vector3 r)
 
static void Lerp (ref Vector3 a, ref Vector3 b, ref Fixed64 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, Fixed64 amount)
 
static Boolean IsUnit (Vector3 v)
 
static void SmoothStep (ref Vector3 v1, ref Vector3 v2, ref Fixed64 amount, out Vector3 r)
 
static void CatmullRom (ref Vector3 v1, ref Vector3 v2, ref Vector3 v3, ref Vector3 v4, ref Fixed64 amount, out Vector3 r)
 
static void Hermite (ref Vector3 v1, ref Vector3 tangent1, ref Vector3 v2, ref Vector3 tangent2, ref Fixed64 amount, out Vector3 r)
 
static Vector3 SmoothStep (Vector3 v1, Vector3 v2, Fixed64 amount)
 
static Vector3 CatmullRom (Vector3 v1, Vector3 v2, Vector3 v3, Vector3 v4, Fixed64 amount)
 
static Vector3 Hermite (Vector3 v1, Vector3 tangent1, Vector3 v2, Vector3 tangent2, Fixed64 amount)
 
static void Distance (ref Vector3 a, ref Vector3 b, out Fixed64 r)
 
static void DistanceSquared (ref Vector3 a, ref Vector3 b, out Fixed64 r)
 
static void Dot (ref Vector3 a, ref Vector3 b, out Fixed64 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 Fixed64 r)
 
static void LengthSquared (ref Vector3 vector, out Fixed64 r)
 
static Fixed64 Distance (Vector3 a, Vector3 b)
 
static Fixed64 DistanceSquared (Vector3 a, Vector3 b)
 
static Fixed64 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 Fixed64 Length (Vector3 v)
 
static Fixed64 LengthSquared (Vector3 v)
 

Public Attributes

Fixed64 X
 
Fixed64 Y
 
Fixed64 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

Fixed64 precision Vector3.


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