|
static void | Equals (ref Matrix44 a, ref Matrix44 b, out Boolean r) |
|
static void | ApproximateEquals (ref Matrix44 a, ref Matrix44 b, out Boolean r) |
|
static void | Add (ref Matrix44 a, ref Matrix44 b, out Matrix44 r) |
|
static void | Subtract (ref Matrix44 a, ref Matrix44 b, out Matrix44 r) |
|
static void | Negate (ref Matrix44 m, out Matrix44 r) |
|
static void | Product (ref Matrix44 a, ref Matrix44 b, out Matrix44 r) |
|
static void | Multiply (ref Matrix44 m, ref Double f, out Matrix44 r) |
|
static Boolean | operator== (Matrix44 a, Matrix44 b) |
|
static Boolean | operator!= (Matrix44 a, Matrix44 b) |
|
static Matrix44 | operator+ (Matrix44 a, Matrix44 b) |
|
static Matrix44 | operator- (Matrix44 a, Matrix44 b) |
|
static Matrix44 | operator- (Matrix44 m) |
|
static Matrix44 | operator* (Matrix44 a, Matrix44 b) |
|
static Matrix44 | operator* (Matrix44 m, Double f) |
|
static Matrix44 | operator* (Double f, Matrix44 m) |
|
static Vector3 | operator* (Vector3 v, Matrix44 m) |
|
static Vector4 | operator* (Vector4 v, Matrix44 m) |
|
static Vector3 | operator* (Matrix44 m, Vector3 v) |
|
static Vector4 | operator* (Matrix44 m, Vector4 v) |
|
static Boolean | Equals (Matrix44 a, Matrix44 b) |
|
static Boolean | ApproximateEquals (Matrix44 a, Matrix44 b) |
|
static Matrix44 | Add (Matrix44 a, Matrix44 b) |
|
static Matrix44 | Subtract (Matrix44 a, Matrix44 b) |
|
static Matrix44 | Negate (Matrix44 m) |
|
static Matrix44 | Product (Matrix44 a, Matrix44 b) |
|
static Matrix44 | Multiply (Matrix44 m, Double f) |
|
static void | Lerp (ref Matrix44 a, ref Matrix44 b, ref Double amount, out Matrix44 r) |
|
static Matrix44 | Lerp (Matrix44 a, Matrix44 b, Double amount) |
|
static void | Transpose (ref Matrix44 m, out Matrix44 r) |
|
static void | Decompose (ref Matrix44 matrix, out Vector3 scale, out Quaternion rotation, out Vector3 translation, out Boolean r) |
|
static void | Determinant (ref Matrix44 m, out Double r) |
|
static void | Invert (ref Matrix44 m, out Matrix44 r) |
|
static void | Transform (ref Matrix44 m, ref Quaternion q, out Matrix44 r) |
|
static void | Transform (ref Matrix44 m, ref Vector3 v, out Vector3 r) |
|
static void | Transform (ref Matrix44 m, ref Vector4 v, out Vector4 r) |
|
static Double | Determinant (Matrix44 matrix) |
|
static Matrix44 | Transpose (Matrix44 input) |
|
static Matrix44 | Invert (Matrix44 matrix) |
|
static Matrix44 | Transform (Matrix44 matrix, Quaternion rotation) |
|
static Vector3 | Transform (Matrix44 matrix, Vector3 v) |
|
static Vector4 | Transform (Matrix44 matrix, Vector4 v) |
|
static void | CreateTranslation (ref Vector3 position, out Matrix44 r) |
|
static void | CreateTranslation (ref Double x, ref Double y, ref Double z, out Matrix44 r) |
|
static void | CreateScale (ref Vector3 scale, out Matrix44 r) |
|
static void | CreateScale (ref Double x, ref Double y, ref Double z, out Matrix44 r) |
|
static void | CreateScale (ref Double scale, out Matrix44 r) |
|
static void | CreateRotationX (ref Double radians, out Matrix44 r) |
|
static void | CreateRotationY (ref Double radians, out Matrix44 r) |
|
static void | CreateRotationZ (ref Double radians, out Matrix44 r) |
|
static void | CreateFromAxisAngle (ref Vector3 axis, ref Double angle, out Matrix44 r) |
|
static void | CreateFromCartesianAxes (ref Vector3 right, ref Vector3 up, ref Vector3 backward, out Matrix44 r) |
|
static void | CreateWorld (ref Vector3 position, ref Vector3 forward, ref Vector3 up, out Matrix44 r) |
|
static void | CreateFromQuaternion (ref Quaternion q, out Matrix44 r) |
|
static void | CreateFromYawPitchRoll (ref Double yaw, ref Double pitch, ref Double roll, out Matrix44 r) |
|
static void | CreatePerspectiveFieldOfView (ref Double fieldOfView, ref Double aspectRatio, ref Double nearPlaneDistance, ref Double farPlaneDistance, out Matrix44 r) |
|
static void | CreatePerspective (ref Double width, ref Double height, ref Double nearPlaneDistance, ref Double farPlaneDistance, out Matrix44 r) |
|
static void | CreatePerspectiveOffCenter (ref Double left, ref Double right, ref Double bottom, ref Double top, ref Double nearPlaneDistance, ref Double farPlaneDistance, out Matrix44 r) |
|
static void | CreateOrthographic (ref Double width, ref Double height, ref Double zNearPlane, ref Double zFarPlane, out Matrix44 r) |
|
static void | CreateOrthographicOffCenter (ref Double left, ref Double right, ref Double bottom, ref Double top, ref Double zNearPlane, ref Double zFarPlane, out Matrix44 r) |
|
static void | CreateLookAt (ref Vector3 cameraPosition, ref Vector3 cameraTarget, ref Vector3 cameraUpVector, out Matrix44 r) |
|
static Matrix44 | CreateTranslation (Double xPosition, Double yPosition, Double zPosition) |
|
static Matrix44 | CreateTranslation (Vector3 position) |
|
static Matrix44 | CreateScale (Double xScale, Double yScale, Double zScale) |
|
static Matrix44 | CreateScale (Vector3 scales) |
|
static Matrix44 | CreateScale (Double scale) |
|
static Matrix44 | CreateRotationX (Double radians) |
|
static Matrix44 | CreateRotationY (Double radians) |
|
static Matrix44 | CreateRotationZ (Double radians) |
|
static Matrix44 | CreateFromAxisAngle (Vector3 axis, Double angle) |
|
static Matrix44 | CreateFromCartesianAxes (Vector3 right, Vector3 up, Vector3 backward) |
|
static Matrix44 | CreateWorld (Vector3 position, Vector3 forward, Vector3 up) |
|
static Matrix44 | CreateFromQuaternion (Quaternion quaternion) |
|
static Matrix44 | CreateFromYawPitchRoll (Double yaw, Double pitch, Double roll) |
|
static Matrix44 | CreatePerspectiveFieldOfView (Double fieldOfView, Double aspectRatio, Double nearPlane, Double farPlane) |
|
static Matrix44 | CreatePerspective (Double width, Double height, Double nearPlane, Double farPlane) |
|
static Matrix44 | CreatePerspectiveOffCenter (Double left, Double right, Double bottom, Double top, Double nearPlane, Double farPlane) |
|
static Matrix44 | CreateOrthographic (Double width, Double height, Double nearPlane, Double farPlane) |
|
static Matrix44 | CreateOrthographicOffCenter (Double left, Double right, Double bottom, Double top, Double nearPlane, Double farPlane) |
|
static Matrix44 | CreateLookAt (Vector3 cameraPosition, Vector3 cameraTarget, Vector3 cameraUpVector) |
|