Jypeli 10
The simple game programming library
|
Julkiset jäsenfunktiot | |
Matrix4x4 (Scalar m00, Scalar m01, Scalar m02, Scalar m03, Scalar m10, Scalar m11, Scalar m12, Scalar m13, Scalar m20, Scalar m21, Scalar m22, Scalar m23, Scalar m30, Scalar m31, Scalar m32, Scalar m33) | |
Matrix4x4 (Scalar[] values) | |
Matrix4x4 (Scalar[] values, int index) | |
Matrix4x4 (Vector4D xAxis, Vector4D yAxis, Vector4D zAxis, Vector4D wAxis) | |
void | CopyFrom (Scalar[] array, int index) |
Copies all the elements of the IAdvanceValueType, of the specified one-dimensional Array to the IAdvanceValueType. Lisää... | |
void | CopyTo (Scalar[] array, int index) |
Copies all the elements of the IAdvanceValueType to the specified one-dimensional Array of Scalar. Lisää... | |
void | CopyTransposedFrom (Scalar[] array, int index) |
void | CopyTransposedTo (Scalar[] array, int index) |
bool | Equals (Matrix4x4 other) |
override bool | Equals (object obj) |
Vector4D | GetColumn (int columnIndex) |
override int | GetHashCode () |
Vector4D | GetRow (int rowIndex) |
void | SetColumn (int columnIndex, Vector4D value) |
void | SetRow (int rowIndex, Vector4D value) |
Scalar[] | ToArray () |
Copies the elements of the IAdvanceValueType to a new array of Scalar . Lisää... | |
Scalar[,] | ToMatrixArray () |
override string | ToString () |
string | ToString (string format) |
turns the object into a string representation of itself with a special format for each Scaler in it. Lisää... | |
Scalar[] | ToTransposedArray () |
Julkiset jäsenfunktiot inherited from AdvanceMath.IMatrix< Matrix4x4, Vector4D, Vector4D > | |
void | CopyTransposedFrom (Scalar[] array, int index) |
Copies all the elements, in a Transposed order, up to the IAdvanceValueType.Count of the IAdvanceValueType, of the specified one-dimensional Array to the IAdvanceValueType. Lisää... | |
void | CopyTransposedTo (Scalar[] array, int index) |
Copies all the elements, in a Transposed order, of the IAdvanceValueType to the specified one-dimensional Array of Scalar. Lisää... | |
VC | GetColumn (int columnIndex) |
Gets the VC at the specified Column. Lisää... | |
VR | GetRow (int rowIndex) |
Gets the VR at the specified Row. Lisää... | |
void | SetColumn (int columnIndex, VC value) |
Sets the VC at the specified Column. Lisää... | |
void | SetRow (int rowIndex, VR value) |
Sets the VR at the specified Row. Lisää... | |
Scalar[,] | ToMatrixArray () |
Copies the elements of the IMatrix to a new 2-dimensional array of Scalars. Lisää... | |
Scalar[] | ToTransposedArray () |
Copies the elements, in a Transposed order, of the IMatrix to a new array of Scalar. Lisää... | |
Staattiset julkiset jäsenfunktiot | |
static Matrix4x4 | Add (Matrix2x2 left, Matrix4x4 right) |
static Matrix4x4 | Add (Matrix2x3 left, Matrix4x4 right) |
static Matrix4x4 | Add (Matrix3x3 left, Matrix4x4 right) |
static Matrix4x4 | Add (Matrix4x4 left, Matrix2x2 right) |
static Matrix4x4 | Add (Matrix4x4 left, Matrix2x3 right) |
static Matrix4x4 | Add (Matrix4x4 left, Matrix3x3 right) |
static Matrix4x4 | Add (Matrix4x4 left, Matrix4x4 right) |
static void | Add (ref Matrix2x2 left, ref Matrix4x4 right, out Matrix4x4 result) |
static void | Add (ref Matrix2x3 left, ref Matrix4x4 right, out Matrix4x4 result) |
static void | Add (ref Matrix3x3 left, ref Matrix4x4 right, out Matrix4x4 result) |
static void | Add (ref Matrix4x4 left, ref Matrix2x2 right, out Matrix4x4 result) |
static void | Add (ref Matrix4x4 left, ref Matrix2x3 right, out Matrix4x4 result) |
static void | Add (ref Matrix4x4 left, ref Matrix3x3 right, out Matrix4x4 result) |
static void | Add (ref Matrix4x4 left, ref Matrix4x4 right, out Matrix4x4 result) |
static void | Copy (ref Matrix2x2 source, ref Matrix4x4 dest) |
static void | Copy (ref Matrix3x3 source, ref Matrix4x4 dest) |
static void | Copy (ref Matrix4x4 matrix, Scalar[] destArray) |
static void | Copy (ref Matrix4x4 matrix, Scalar[] destArray, int index) |
static void | Copy (Scalar[] sourceArray, int index, out Matrix4x4 result) |
static void | Copy (Scalar[] sourceArray, out Matrix4x4 result) |
static void | CopyTranspose (ref Matrix4x4 matrix, Scalar[] destArray) |
static void | CopyTranspose (ref Matrix4x4 matrix, Scalar[] destArray, int index) |
static void | CopyTranspose (Scalar[] sourceArray, int index, out Matrix4x4 result) |
static void | CopyTranspose (Scalar[] sourceArray, out Matrix4x4 result) |
static bool | Equals (Matrix4x4 left, Matrix4x4 right) |
static bool | Equals (ref Matrix4x4 left, ref Matrix4x4 right) |
static Matrix4x4 | From2DMatrix (Matrix2x3 source) |
static Matrix4x4 | From2DMatrix (Matrix3x3 source) |
static void | From2DMatrix (ref Matrix2x3 source, out Matrix4x4 result) |
static void | From2DMatrix (ref Matrix3x3 source, out Matrix4x4 result) |
static Matrix4x4 | FromArray (Scalar[] array) |
static Matrix4x4 | FromLookAt (Vector3D origin, Vector3D positiveZAxis, Vector3D onPositiveY) |
static Matrix4x4 | FromOrthographic (Scalar left, Scalar right, Scalar bottom, Scalar top, Scalar near, Scalar far) |
static void | FromScale (ref Vector3D scale, out Matrix4x4 result) |
static Matrix4x4 | FromScale (Vector3D scale) |
static void | FromTranslation (ref Vector3D translation, out Matrix4x4 result) |
static Matrix4x4 | FromTranslation (Vector3D translation) |
static Matrix4x4 | FromTransposedArray (Scalar[] array) |
static Matrix4x4 | GetAdjoint (Matrix4x4 source) |
static void | GetAdjoint (ref Matrix4x4 source, out Matrix4x4 result) |
static Matrix4x4 | GetCofactor (Matrix4x4 source) |
static void | GetCofactor (ref Matrix4x4 source, out Matrix4x4 result) |
static Scalar | GetDeterminant (Matrix4x4 source) |
static void | GetDeterminant (ref Matrix4x4 source, out Scalar result) |
static Matrix4x4 | Invert (Matrix4x4 source) |
static void | Invert (ref Matrix4x4 source, out Matrix4x4 result) |
static Matrix4x4 | Lerp (Matrix4x4 left, Matrix4x4 right, Scalar amount) |
static void | Lerp (ref Matrix4x4 left, ref Matrix4x4 right, ref Scalar amount, out Matrix4x4 result) |
static Matrix4x4 | Multiply (Matrix2x2 left, Matrix4x4 right) |
static Matrix4x4 | Multiply (Matrix2x3 left, Matrix4x4 right) |
static Matrix4x4 | Multiply (Matrix3x3 left, Matrix4x4 right) |
static Matrix4x4 | Multiply (Matrix4x4 left, Matrix2x2 right) |
static Matrix4x4 | Multiply (Matrix4x4 left, Matrix2x3 right) |
static Matrix4x4 | Multiply (Matrix4x4 left, Matrix3x3 right) |
static Matrix4x4 | Multiply (Matrix4x4 left, Matrix4x4 right) |
static Matrix4x4 | Multiply (Matrix4x4 left, Scalar scalar) |
static void | Multiply (ref Matrix2x2 left, ref Matrix4x4 right, out Matrix4x4 result) |
static void | Multiply (ref Matrix2x3 left, ref Matrix4x4 right, out Matrix4x4 result) |
static void | Multiply (ref Matrix3x3 left, ref Matrix4x4 right, out Matrix4x4 result) |
static void | Multiply (ref Matrix4x4 left, ref Matrix2x2 right, out Matrix4x4 result) |
static void | Multiply (ref Matrix4x4 left, ref Matrix2x3 right, out Matrix4x4 result) |
static void | Multiply (ref Matrix4x4 left, ref Matrix3x3 right, out Matrix4x4 result) |
static void | Multiply (ref Matrix4x4 left, ref Matrix4x4 right, out Matrix4x4 result) |
static void | Multiply (ref Matrix4x4 left, ref Scalar scalar, out Matrix4x4 result) |
static Matrix4x4 | Negate (Matrix4x4 source) |
static void | Negate (ref Matrix4x4 source) |
static void | Negate (ref Matrix4x4 source, out Matrix4x4 result) |
static | operator Matrix4x4 (Matrix2x2 source) |
static | operator Matrix4x4 (Matrix3x3 source) |
static bool | operator!= (Matrix4x4 left, Matrix4x4 right) |
static Matrix4x4 | operator* (Matrix2x2 left, Matrix4x4 right) |
static Matrix4x4 | operator* (Matrix2x3 left, Matrix4x4 right) |
static Matrix4x4 | operator* (Matrix3x3 left, Matrix4x4 right) |
static Matrix4x4 | operator* (Matrix4x4 left, Matrix2x2 right) |
static Matrix4x4 | operator* (Matrix4x4 left, Matrix2x3 right) |
static Matrix4x4 | operator* (Matrix4x4 left, Matrix3x3 right) |
static Matrix4x4 | operator* (Matrix4x4 left, Matrix4x4 right) |
static Matrix4x4 | operator* (Matrix4x4 left, Scalar scalar) |
static Matrix4x4 | operator+ (Matrix2x2 left, Matrix4x4 right) |
static Matrix4x4 | operator+ (Matrix2x3 left, Matrix4x4 right) |
static Matrix4x4 | operator+ (Matrix3x3 left, Matrix4x4 right) |
static Matrix4x4 | operator+ (Matrix4x4 left, Matrix2x2 right) |
static Matrix4x4 | operator+ (Matrix4x4 left, Matrix2x3 right) |
static Matrix4x4 | operator+ (Matrix4x4 left, Matrix3x3 right) |
static Matrix4x4 | operator+ (Matrix4x4 left, Matrix4x4 right) |
static Matrix4x4 | operator- (Matrix2x2 left, Matrix4x4 right) |
static Matrix4x4 | operator- (Matrix2x3 left, Matrix4x4 right) |
static Matrix4x4 | operator- (Matrix3x3 left, Matrix4x4 right) |
static Matrix4x4 | operator- (Matrix4x4 left, Matrix2x2 right) |
static Matrix4x4 | operator- (Matrix4x4 left, Matrix2x3 right) |
static Matrix4x4 | operator- (Matrix4x4 left, Matrix3x3 right) |
static Matrix4x4 | operator- (Matrix4x4 left, Matrix4x4 right) |
static Matrix4x4 | operator- (Matrix4x4 source) |
static bool | operator== (Matrix4x4 left, Matrix4x4 right) |
static Matrix4x4 | Parse (string s) |
static Matrix4x4 | Subtract (Matrix2x2 left, Matrix4x4 right) |
static Matrix4x4 | Subtract (Matrix2x3 left, Matrix4x4 right) |
static Matrix4x4 | Subtract (Matrix3x3 left, Matrix4x4 right) |
static Matrix4x4 | Subtract (Matrix4x4 left, Matrix2x2 right) |
static Matrix4x4 | Subtract (Matrix4x4 left, Matrix2x3 right) |
static Matrix4x4 | Subtract (Matrix4x4 left, Matrix3x3 right) |
static Matrix4x4 | Subtract (Matrix4x4 left, Matrix4x4 right) |
static void | Subtract (ref Matrix2x2 left, ref Matrix4x4 right, out Matrix4x4 result) |
static void | Subtract (ref Matrix2x3 left, ref Matrix4x4 right, out Matrix4x4 result) |
static void | Subtract (ref Matrix3x3 left, ref Matrix4x4 right, out Matrix4x4 result) |
static void | Subtract (ref Matrix4x4 left, ref Matrix2x2 right, out Matrix4x4 result) |
static void | Subtract (ref Matrix4x4 left, ref Matrix2x3 right, out Matrix4x4 result) |
static void | Subtract (ref Matrix4x4 left, ref Matrix3x3 right, out Matrix4x4 result) |
static void | Subtract (ref Matrix4x4 left, ref Matrix4x4 right, out Matrix4x4 result) |
static Matrix4x4 | Transpose (Matrix4x4 source) |
static void | Transpose (ref Matrix4x4 source, out Matrix4x4 result) |
static bool | TryParse (string s, out Matrix4x4 result) |
Julkiset attribuutit | |
Scalar | m00 |
Scalar | m01 |
Scalar | m02 |
Scalar | m03 |
Scalar | m10 |
Scalar | m11 |
Scalar | m12 |
Scalar | m13 |
Scalar | m20 |
Scalar | m21 |
Scalar | m22 |
Scalar | m23 |
Scalar | m30 |
Scalar | m31 |
Scalar | m32 |
Scalar | m33 |
Staattiset julkiset attribuutit | |
const int | ColumnCount = 4 |
The number of columns. Lisää... | |
const int | Count = RowCount * ColumnCount |
The number of Scalar values in the class. Lisää... | |
static readonly Matrix4x4 | Identity |
const int | RowCount = 4 |
The number of rows. Lisää... | |
const int | Size = sizeof(Scalar) * Count |
The Size of the class in bytes; Lisää... | |
static readonly Matrix4x4 | Zero |
Ominaisuudet | |
Matrix4x4 | Adjoint [get] |
Used to generate the adjoint of this matrix.. Lisää... | |
Matrix4x4 | Cofactor [get] |
Used to generate the Cofactor of this matrix. Lisää... | |
int IMatrix. | ColumnCount [get] |
int IAdvanceValueType. | Count [get] |
Vector4D | Cw [getset] |
Vector4D | Cx [getset] |
Vector4D | Cy [getset] |
Vector4D | Cz [getset] |
Scalar | Determinant [get] |
Gets the determinant of this matrix. Lisää... | |
Matrix4x4 | Inverted [get] |
written to test out a theory. a very wasteful implimentation. but works. Lisää... | |
int IMatrix. | RowCount [get] |
Vector4D | Rw [getset] |
Vector4D | Rx [getset] |
Vector4D | Ry [getset] |
Vector4D | Rz [getset] |
Matrix4x4 | Transposed [get] |
Swap the rows of the matrix with the columns. Lisää... | |
Ominaisuudet inherited from AdvanceMath.IMatrix< Matrix4x4, Vector4D, Vector4D > | |
M | Adjoint [get] |
Gets the Adjoint (Conjugate Transpose) of the IMatrix Lisää... | |
M | Cofactor [get] |
Gets the Cofactor (The Transpose of the Adjoint) of the IMatrix Lisää... | |
int | ColumnCount [get] |
Gets a 32-bit integer that represents the total number of Columns in the IMatrix. Lisää... | |
Scalar | Determinant [get] |
Gets the Determinant of the IMatrix Lisää... | |
M | Inverted [get] |
Gets the Inverse of the IMatrix Lisää... | |
int | RowCount [get] |
Gets a 32-bit integer that represents the total number of Rows in the IMatrix. Lisää... | |
M | Transposed [get] |
Gets the Transpose of the IMatrix Lisää... | |
Ominaisuudet inherited from AdvanceMath.IAdvanceValueType | |
int | Count [get] |
Gets a 32-bit integer that represents the total number of elements in all the dimensions of IAdvanceValueType. Lisää... | |
Yksityiset jäsenfunktiot | |
string | ToStringInternal (string FormatString) |
Staattiset yksityiset attribuutit | |
static readonly string | FormatableString = MatrixHelper.CreateMatrixFormatableString(RowCount, ColumnCount) |
static readonly string | FormatString = MatrixHelper.CreateMatrixFormatString(RowCount, ColumnCount) |
Määrittely tiedoston Matrix4x4.cs rivillä 45.
AdvanceMath.Matrix4x4.Matrix4x4 | ( | Scalar | m00, |
Scalar | m01, | ||
Scalar | m02, | ||
Scalar | m03, | ||
Scalar | m10, | ||
Scalar | m11, | ||
Scalar | m12, | ||
Scalar | m13, | ||
Scalar | m20, | ||
Scalar | m21, | ||
Scalar | m22, | ||
Scalar | m23, | ||
Scalar | m30, | ||
Scalar | m31, | ||
Scalar | m32, | ||
Scalar | m33 | ||
) |
Määrittely tiedoston Matrix4x4.cs rivillä 1766.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Määrittely tiedoston Matrix4x4.cs rivillä 1778.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32, AdvanceMath.Matrix4x4.m33, AdvanceMath.Vector4D.W, AdvanceMath.Vector4D.X, AdvanceMath.Vector4D.Y ja AdvanceMath.Vector4D.Z.
AdvanceMath.Matrix4x4.Matrix4x4 | ( | Scalar[] | values | ) |
Määrittely tiedoston Matrix4x4.cs rivillä 1785.
AdvanceMath.Matrix4x4.Matrix4x4 | ( | Scalar[] | values, |
int | index | ||
) |
Määrittely tiedoston Matrix4x4.cs rivillä 1786.
Viittaukset AdvanceMath.Matrix4x4.Copy().
Määrittely tiedoston Matrix4x4.cs rivillä 1117.
Viittaukset AdvanceMath.Matrix4x4.Add().
Määrittely tiedoston Matrix4x4.cs rivillä 1060.
Viittaukset AdvanceMath.Matrix4x4.Add().
Määrittely tiedoston Matrix4x4.cs rivillä 1003.
Viittaukset AdvanceMath.Matrix4x4.Add().
Määrittely tiedoston Matrix4x4.cs rivillä 1145.
Viittaukset AdvanceMath.Matrix4x4.Add().
Määrittely tiedoston Matrix4x4.cs rivillä 1088.
Viittaukset AdvanceMath.Matrix4x4.Add().
Määrittely tiedoston Matrix4x4.cs rivillä 1031.
Viittaukset AdvanceMath.Matrix4x4.Add().
Määrittely tiedoston Matrix4x4.cs rivillä 954.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Viitattu AdvanceMath.Matrix4x4.Add() ja AdvanceMath.Matrix4x4.operator+().
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 1123.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 1066.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 1009.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 1151.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 1094.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 1037.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 980.
Määrittely tiedoston Matrix4x4.cs rivillä 209.
Määrittely tiedoston Matrix4x4.cs rivillä 195.
Määrittely tiedoston Matrix4x4.cs rivillä 83.
Viittaukset AdvanceMath.Matrix4x4.Copy().
Viitattu AdvanceMath.Matrix4x4.Matrix4x4(), AdvanceMath.Matrix4x4.Copy(), AdvanceMath.Matrix4x4.CopyFrom(), AdvanceMath.Matrix4x4.CopyTo() ja AdvanceMath.Matrix4x4.FromArray().
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 87.
Viittaukset AdvanceMath.ThrowHelper.CheckCopy() ja AdvanceMath.Matrix4x4.Count.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 115.
Viittaukset AdvanceMath.ThrowHelper.CheckCopy() ja AdvanceMath.Matrix4x4.Count.
Määrittely tiedoston Matrix4x4.cs rivillä 111.
Viittaukset AdvanceMath.Matrix4x4.Copy().
void AdvanceMath.Matrix4x4.CopyFrom | ( | Scalar[] | array, |
int | index | ||
) |
Copies all the elements of the IAdvanceValueType, of the specified one-dimensional Array to the IAdvanceValueType.
array | The one-dimensional Array that is the source of the elements copied to the IAdvanceValueType. |
index | A 32-bit integer that represents the index in array at which copying begins. |
Toteuttaa luokan AdvanceMath.IAdvanceValueType.
Määrittely tiedoston Matrix4x4.cs rivillä 2142.
Viittaukset AdvanceMath.Matrix4x4.Copy().
void AdvanceMath.Matrix4x4.CopyTo | ( | Scalar[] | array, |
int | index | ||
) |
Copies all the elements of the IAdvanceValueType to the specified one-dimensional Array of Scalar.
array | The one-dimensional Array that is the destination of the elements copied from the IAdvanceValueType. |
index | A 32-bit integer that represents the index in array at which copying begins. |
Toteuttaa luokan AdvanceMath.IAdvanceValueType.
Määrittely tiedoston Matrix4x4.cs rivillä 2134.
Viittaukset AdvanceMath.Matrix4x4.Copy().
Määrittely tiedoston Matrix4x4.cs rivillä 139.
Viittaukset AdvanceMath.Matrix4x4.CopyTranspose().
Viitattu AdvanceMath.Matrix4x4.CopyTranspose(), AdvanceMath.Matrix4x4.CopyTransposedFrom(), AdvanceMath.Matrix4x4.CopyTransposedTo() ja AdvanceMath.Matrix4x4.FromTransposedArray().
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 143.
Viittaukset AdvanceMath.ThrowHelper.CheckCopy() ja AdvanceMath.Matrix4x4.Count.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 171.
Viittaukset AdvanceMath.ThrowHelper.CheckCopy() ja AdvanceMath.Matrix4x4.Count.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 167.
Viittaukset AdvanceMath.Matrix4x4.CopyTranspose().
void AdvanceMath.Matrix4x4.CopyTransposedFrom | ( | Scalar[] | array, |
int | index | ||
) |
Määrittely tiedoston Matrix4x4.cs rivillä 2146.
Viittaukset AdvanceMath.Matrix4x4.CopyTranspose().
void AdvanceMath.Matrix4x4.CopyTransposedTo | ( | Scalar[] | array, |
int | index | ||
) |
Määrittely tiedoston Matrix4x4.cs rivillä 2138.
Viittaukset AdvanceMath.Matrix4x4.CopyTranspose().
Määrittely tiedoston Matrix4x4.cs rivillä 1735.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Viitattu AdvanceMath.Matrix4x4.Equals().
bool AdvanceMath.Matrix4x4.Equals | ( | Matrix4x4 | other | ) |
Määrittely tiedoston Matrix4x4.cs rivillä 2184.
Viittaukset AdvanceMath.Matrix4x4.Equals().
override bool AdvanceMath.Matrix4x4.Equals | ( | object | obj | ) |
Määrittely tiedoston Matrix4x4.cs rivillä 2178.
Viittaukset AdvanceMath.Matrix4x4.Equals().
Määrittely tiedoston Matrix4x4.cs rivillä 1743.
Määrittely tiedoston Matrix4x4.cs rivillä 419.
Viittaukset AdvanceMath.Matrix4x4.From2DMatrix().
Määrittely tiedoston Matrix4x4.cs rivillä 390.
Viittaukset AdvanceMath.Matrix4x4.From2DMatrix().
Viitattu AdvanceMath.Matrix4x4.From2DMatrix().
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 425.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 396.
Määrittely tiedoston Matrix4x4.cs rivillä 249.
Viittaukset AdvanceMath.Matrix4x4.Copy().
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 356.
Viittaukset AdvanceMath.Matrix3x3.FromLookAt() ja AdvanceMath.Matrix4x4.FromTranslation().
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 361.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Määrittely tiedoston Matrix4x4.cs rivillä 334.
Määrittely tiedoston Matrix4x4.cs rivillä 310.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32, AdvanceMath.Matrix4x4.m33, AdvanceMath.Vector3D.X, AdvanceMath.Vector3D.Y ja AdvanceMath.Vector3D.Z.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 288.
Määrittely tiedoston Matrix4x4.cs rivillä 262.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32, AdvanceMath.Matrix4x4.m33, AdvanceMath.Vector3D.X, AdvanceMath.Vector3D.Y ja AdvanceMath.Vector3D.Z.
Viitattu AdvanceMath.Matrix4x4.FromLookAt().
Määrittely tiedoston Matrix4x4.cs rivillä 255.
Viittaukset AdvanceMath.Matrix4x4.CopyTranspose().
Määrittely tiedoston Matrix4x4.cs rivillä 1581.
Viittaukset AdvanceMath.Matrix4x4.GetAdjoint().
Viitattu AdvanceMath.Matrix4x4.GetAdjoint().
Määrittely tiedoston Matrix4x4.cs rivillä 1587.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12 ja AdvanceMath.Matrix4x4.m13.
Määrittely tiedoston Matrix4x4.cs rivillä 1651.
Viittaukset AdvanceMath.Matrix4x4.GetCofactor().
Viitattu AdvanceMath.Matrix4x4.GetCofactor().
Määrittely tiedoston Matrix4x4.cs rivillä 1657.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12 ja AdvanceMath.Matrix4x4.m13.
Vector4D AdvanceMath.Matrix4x4.GetColumn | ( | int | columnIndex | ) |
Määrittely tiedoston Matrix4x4.cs rivillä 2041.
Viittaukset AdvanceMath.Matrix4x4.ColumnCount, AdvanceMath.Matrix4x4.Cw, AdvanceMath.Matrix4x4.Cx, AdvanceMath.Matrix4x4.Cy, AdvanceMath.Matrix4x4.Cz ja AdvanceMath.ThrowHelper.GetThrowIndex().
Määrittely tiedoston Matrix4x4.cs rivillä 1520.
Viittaukset AdvanceMath.Matrix4x4.GetDeterminant().
Viitattu AdvanceMath.Matrix4x4.GetDeterminant().
Määrittely tiedoston Matrix4x4.cs rivillä 1526.
override int AdvanceMath.Matrix4x4.GetHashCode | ( | ) |
Määrittely tiedoston Matrix4x4.cs rivillä 2169.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Vector4D AdvanceMath.Matrix4x4.GetRow | ( | int | rowIndex | ) |
Määrittely tiedoston Matrix4x4.cs rivillä 2076.
Viittaukset AdvanceMath.ThrowHelper.GetThrowIndex(), AdvanceMath.Matrix4x4.RowCount, AdvanceMath.Matrix4x4.Rw, AdvanceMath.Matrix4x4.Rx, AdvanceMath.Matrix4x4.Ry ja AdvanceMath.Matrix4x4.Rz.
Määrittely tiedoston Matrix4x4.cs rivillä 1448.
Viittaukset AdvanceMath.Matrix4x4.Invert().
Viitattu AdvanceMath.Matrix4x4.Invert().
Määrittely tiedoston Matrix4x4.cs rivillä 1454.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12 ja AdvanceMath.Matrix4x4.m13.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 218.
Viittaukset AdvanceMath.Matrix4x4.Lerp().
Viitattu AdvanceMath.Matrix4x4.Lerp().
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 224.
Määrittely tiedoston Matrix4x4.cs rivillä 894.
Viittaukset AdvanceMath.Matrix2x2.m00, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix2x2.m01, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix2x2.m10, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix2x2.m11, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Määrittely tiedoston Matrix4x4.cs rivillä 768.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix2x3.m11, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix2x3.m12, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Määrittely tiedoston Matrix4x4.cs rivillä 638.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix3x3.m21, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix3x3.m22, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Määrittely tiedoston Matrix4x4.cs rivillä 827.
Viittaukset AdvanceMath.Matrix2x2.m00, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix2x2.m01, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix2x2.m10, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix2x2.m11, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Määrittely tiedoston Matrix4x4.cs rivillä 702.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix2x3.m11, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix2x3.m12, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Määrittely tiedoston Matrix4x4.cs rivillä 572.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix3x3.m21, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix3x3.m22, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Määrittely tiedoston Matrix4x4.cs rivillä 448.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Määrittely tiedoston Matrix4x4.cs rivillä 522.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 920.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12 ja AdvanceMath.Matrix4x4.m13.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 794.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12 ja AdvanceMath.Matrix4x4.m13.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 664.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22 ja AdvanceMath.Matrix4x4.m23.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 853.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m30 ja AdvanceMath.Matrix4x4.m31.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 728.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31 ja AdvanceMath.Matrix4x4.m32.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 598.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31 ja AdvanceMath.Matrix4x4.m32.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 474.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 548.
Määrittely tiedoston Matrix4x4.cs rivillä 1395.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Viitattu AdvanceMath.Matrix4x4.Negate().
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 1421.
Viittaukset AdvanceMath.Matrix4x4.Negate().
Määrittely tiedoston Matrix4x4.cs rivillä 1425.
Määrittely tiedoston Matrix4x4.cs rivillä 2672.
Viittaukset AdvanceMath.Matrix2x2.m00, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix2x2.m01, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix2x2.m10, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix2x2.m11, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Määrittely tiedoston Matrix4x4.cs rivillä 2646.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix3x3.m21, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix3x3.m22, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Määrittely tiedoston Matrix4x4.cs rivillä 2641.
Määrittely tiedoston Matrix4x4.cs rivillä 2451.
Viittaukset AdvanceMath.Matrix2x2.m00, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix2x2.m01, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix2x2.m10, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix2x2.m11, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Määrittely tiedoston Matrix4x4.cs rivillä 2397.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix2x3.m11, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix2x3.m12, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Määrittely tiedoston Matrix4x4.cs rivillä 2343.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix3x3.m21, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix3x3.m22, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Määrittely tiedoston Matrix4x4.cs rivillä 2424.
Viittaukset AdvanceMath.Matrix2x2.m00, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix2x2.m01, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix2x2.m10, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix2x2.m11, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Määrittely tiedoston Matrix4x4.cs rivillä 2370.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix2x3.m11, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix2x3.m12, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Määrittely tiedoston Matrix4x4.cs rivillä 2316.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix3x3.m21, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix3x3.m22, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Määrittely tiedoston Matrix4x4.cs rivillä 2262.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Määrittely tiedoston Matrix4x4.cs rivillä 2289.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Määrittely tiedoston Matrix4x4.cs rivillä 2528.
Viittaukset AdvanceMath.Matrix4x4.Add().
Määrittely tiedoston Matrix4x4.cs rivillä 2516.
Viittaukset AdvanceMath.Matrix4x4.Add().
Määrittely tiedoston Matrix4x4.cs rivillä 2504.
Viittaukset AdvanceMath.Matrix4x4.Add().
Määrittely tiedoston Matrix4x4.cs rivillä 2534.
Viittaukset AdvanceMath.Matrix4x4.Add().
Määrittely tiedoston Matrix4x4.cs rivillä 2522.
Viittaukset AdvanceMath.Matrix4x4.Add().
Määrittely tiedoston Matrix4x4.cs rivillä 2510.
Viittaukset AdvanceMath.Matrix4x4.Add().
Määrittely tiedoston Matrix4x4.cs rivillä 2478.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Määrittely tiedoston Matrix4x4.cs rivillä 2591.
Viittaukset AdvanceMath.Matrix4x4.Subtract().
Määrittely tiedoston Matrix4x4.cs rivillä 2579.
Viittaukset AdvanceMath.Matrix4x4.Subtract().
Määrittely tiedoston Matrix4x4.cs rivillä 2567.
Viittaukset AdvanceMath.Matrix4x4.Subtract().
Määrittely tiedoston Matrix4x4.cs rivillä 2597.
Viittaukset AdvanceMath.Matrix4x4.Subtract().
Määrittely tiedoston Matrix4x4.cs rivillä 2585.
Viittaukset AdvanceMath.Matrix4x4.Subtract().
Määrittely tiedoston Matrix4x4.cs rivillä 2573.
Viittaukset AdvanceMath.Matrix4x4.Subtract().
Määrittely tiedoston Matrix4x4.cs rivillä 2541.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Määrittely tiedoston Matrix4x4.cs rivillä 2605.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Määrittely tiedoston Matrix4x4.cs rivillä 2632.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 1721.
Viittaukset AdvanceMath.Matrix4x4.Zero.
void AdvanceMath.Matrix4x4.SetColumn | ( | int | columnIndex, |
Vector4D | value | ||
) |
Määrittely tiedoston Matrix4x4.cs rivillä 2056.
Viittaukset AdvanceMath.Matrix4x4.ColumnCount, AdvanceMath.Matrix4x4.Cw, AdvanceMath.Matrix4x4.Cx, AdvanceMath.Matrix4x4.Cy, AdvanceMath.Matrix4x4.Cz ja AdvanceMath.ThrowHelper.GetThrowIndex().
void AdvanceMath.Matrix4x4.SetRow | ( | int | rowIndex, |
Vector4D | value | ||
) |
Määrittely tiedoston Matrix4x4.cs rivillä 2091.
Viittaukset AdvanceMath.ThrowHelper.GetThrowIndex(), AdvanceMath.Matrix4x4.RowCount, AdvanceMath.Matrix4x4.Rw, AdvanceMath.Matrix4x4.Rx, AdvanceMath.Matrix4x4.Ry ja AdvanceMath.Matrix4x4.Rz.
Määrittely tiedoston Matrix4x4.cs rivillä 1338.
Viittaukset AdvanceMath.Matrix4x4.Subtract().
Määrittely tiedoston Matrix4x4.cs rivillä 1281.
Viittaukset AdvanceMath.Matrix4x4.Subtract().
Määrittely tiedoston Matrix4x4.cs rivillä 1224.
Viittaukset AdvanceMath.Matrix4x4.Subtract().
Määrittely tiedoston Matrix4x4.cs rivillä 1366.
Viittaukset AdvanceMath.Matrix4x4.Subtract().
Määrittely tiedoston Matrix4x4.cs rivillä 1309.
Viittaukset AdvanceMath.Matrix4x4.Subtract().
Määrittely tiedoston Matrix4x4.cs rivillä 1252.
Viittaukset AdvanceMath.Matrix4x4.Subtract().
Määrittely tiedoston Matrix4x4.cs rivillä 1175.
Viittaukset AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Viitattu AdvanceMath.Matrix4x4.operator-() ja AdvanceMath.Matrix4x4.Subtract().
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 1344.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 1287.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 1230.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 1372.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 1315.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 1258.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 1201.
Scalar[] AdvanceMath.Matrix4x4.ToArray | ( | ) |
Copies the elements of the IAdvanceValueType to a new array of Scalar .
Toteuttaa luokan AdvanceMath.IAdvanceValueType.
Määrittely tiedoston Matrix4x4.cs rivillä 2122.
Viittaukset AdvanceMath.Matrix4x4.Count, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Scalar[,] AdvanceMath.Matrix4x4.ToMatrixArray | ( | ) |
Määrittely tiedoston Matrix4x4.cs rivillä 2112.
Viittaukset AdvanceMath.Matrix4x4.ColumnCount, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32, AdvanceMath.Matrix4x4.m33 ja AdvanceMath.Matrix4x4.RowCount.
override string AdvanceMath.Matrix4x4.ToString | ( | ) |
Määrittely tiedoston Matrix4x4.cs rivillä 2164.
Viittaukset AdvanceMath.Matrix4x4.FormatString ja AdvanceMath.Matrix4x4.ToStringInternal().
string AdvanceMath.Matrix4x4.ToString | ( | string | format | ) |
turns the object into a string representation of itself with a special format for each Scaler in it.
format | the format to be applied to each Scalar |
Toteuttaa luokan AdvanceMath.IAdvanceValueType.
Määrittely tiedoston Matrix4x4.cs rivillä 2160.
Viittaukset AdvanceMath.Matrix4x4.FormatableString ja AdvanceMath.Matrix4x4.ToStringInternal().
|
private |
Määrittely tiedoston Matrix4x4.cs rivillä 2152.
Viittaukset AdvanceMath.Matrix4x4.FormatString, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Viitattu AdvanceMath.Matrix4x4.ToString().
Scalar[] AdvanceMath.Matrix4x4.ToTransposedArray | ( | ) |
Määrittely tiedoston Matrix4x4.cs rivillä 2126.
Viittaukset AdvanceMath.Matrix4x4.Count, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix4x4.m22, AdvanceMath.Matrix4x4.m23, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31, AdvanceMath.Matrix4x4.m32 ja AdvanceMath.Matrix4x4.m33.
Määrittely tiedoston Matrix4x4.cs rivillä 1543.
Viittaukset AdvanceMath.Matrix4x4.Transpose().
Viitattu AdvanceMath.Matrix4x4.Transpose().
Määrittely tiedoston Matrix4x4.cs rivillä 1549.
Viittaukset AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix4x4.m13 ja AdvanceMath.Matrix4x4.m23.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 1728.
Viittaukset AdvanceMath.Matrix4x4.Zero.
|
static |
The number of columns.
Määrittely tiedoston Matrix4x4.cs rivillä 55.
Viitattu AdvanceMath.Matrix4x4.GetColumn(), AdvanceMath.Matrix4x4.SetColumn() ja AdvanceMath.Matrix4x4.ToMatrixArray().
|
static |
The number of Scalar values in the class.
Määrittely tiedoston Matrix4x4.cs rivillä 59.
Viitattu AdvanceMath.Matrix4x4.Copy(), AdvanceMath.Matrix4x4.CopyTranspose(), AdvanceMath.Matrix4x4.ToArray() ja AdvanceMath.Matrix4x4.ToTransposedArray().
|
staticprivate |
Määrittely tiedoston Matrix4x4.cs rivillä 79.
Viitattu AdvanceMath.Matrix4x4.ToString().
|
staticprivate |
Määrittely tiedoston Matrix4x4.cs rivillä 78.
Viitattu AdvanceMath.Matrix4x4.ToString() ja AdvanceMath.Matrix4x4.ToStringInternal().
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 72.
Viitattu AdvanceMath.Matrix2x3.ToMatrix4x4(), AdvanceMath.Matrix3x3.ToMatrix4x4(), AdvanceMath.Matrix2x3.ToMatrix4x4From2D() ja AdvanceMath.Matrix3x3.ToMatrix4x4From2D().
Scalar AdvanceMath.Matrix4x4.m00 |
Määrittely tiedoston Matrix4x4.cs rivillä 1755.
Viitattu AdvanceMath.Matrix4x4.Matrix4x4(), AdvanceMath.Matrix4x4.Add(), AdvanceMath.Matrix4x4.Equals(), AdvanceMath.Matrix4x4.FromOrthographic(), AdvanceMath.Matrix4x4.FromScale(), AdvanceMath.Matrix4x4.FromTranslation(), AdvanceMath.Matrix4x4.GetAdjoint(), AdvanceMath.Matrix4x4.GetCofactor(), AdvanceMath.Matrix4x4.GetHashCode(), AdvanceMath.Matrix4x4.Invert(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix4x4.Negate(), AdvanceMath.Matrix2x3.operator Matrix2x3(), AdvanceMath.Matrix3x3.operator Matrix3x3(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Vector4D.operator*(), AdvanceMath.Matrix4x4.operator+(), AdvanceMath.Matrix4x4.operator-(), AdvanceMath.Matrix4x4.operator==(), AdvanceMath.IO.MathReader.ReadMatrix4x4(), AdvanceMath.Matrix4x4.Subtract(), AdvanceMath.Matrix4x4.ToArray(), AdvanceMath.Matrix2x3.ToMatrix4x4(), AdvanceMath.Matrix3x3.ToMatrix4x4(), AdvanceMath.Matrix2x3.ToMatrix4x4From2D(), AdvanceMath.Matrix3x3.ToMatrix4x4From2D(), AdvanceMath.Matrix4x4.ToMatrixArray(), AdvanceMath.Matrix4x4.ToStringInternal(), AdvanceMath.Matrix4x4.ToTransposedArray(), AdvanceMath.Vector3D.Transform(), AdvanceMath.Vector4D.Transform() ja AdvanceMath.IO.MathWriter.Write().
Scalar AdvanceMath.Matrix4x4.m01 |
Määrittely tiedoston Matrix4x4.cs rivillä 1755.
Viitattu AdvanceMath.Matrix4x4.Matrix4x4(), AdvanceMath.Matrix4x4.Add(), AdvanceMath.Matrix4x4.Equals(), AdvanceMath.Matrix4x4.FromOrthographic(), AdvanceMath.Matrix4x4.FromScale(), AdvanceMath.Matrix4x4.FromTranslation(), AdvanceMath.Matrix4x4.GetAdjoint(), AdvanceMath.Matrix4x4.GetCofactor(), AdvanceMath.Matrix4x4.GetHashCode(), AdvanceMath.Matrix4x4.Invert(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix4x4.Negate(), AdvanceMath.Matrix2x3.operator Matrix2x3(), AdvanceMath.Matrix3x3.operator Matrix3x3(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Vector4D.operator*(), AdvanceMath.Matrix4x4.operator+(), AdvanceMath.Matrix4x4.operator-(), AdvanceMath.Matrix4x4.operator==(), AdvanceMath.IO.MathReader.ReadMatrix4x4(), AdvanceMath.Matrix4x4.Subtract(), AdvanceMath.Matrix4x4.ToArray(), AdvanceMath.Matrix2x3.ToMatrix4x4(), AdvanceMath.Matrix3x3.ToMatrix4x4(), AdvanceMath.Matrix2x3.ToMatrix4x4From2D(), AdvanceMath.Matrix3x3.ToMatrix4x4From2D(), AdvanceMath.Matrix4x4.ToMatrixArray(), AdvanceMath.Matrix4x4.ToStringInternal(), AdvanceMath.Matrix4x4.ToTransposedArray(), AdvanceMath.Vector3D.Transform(), AdvanceMath.Vector4D.Transform(), AdvanceMath.Matrix4x4.Transpose() ja AdvanceMath.IO.MathWriter.Write().
Scalar AdvanceMath.Matrix4x4.m02 |
Määrittely tiedoston Matrix4x4.cs rivillä 1755.
Viitattu AdvanceMath.Matrix4x4.Matrix4x4(), AdvanceMath.Matrix4x4.Add(), AdvanceMath.Matrix4x4.Equals(), AdvanceMath.Matrix4x4.FromOrthographic(), AdvanceMath.Matrix4x4.FromScale(), AdvanceMath.Matrix4x4.FromTranslation(), AdvanceMath.Matrix4x4.GetAdjoint(), AdvanceMath.Matrix4x4.GetCofactor(), AdvanceMath.Matrix4x4.GetHashCode(), AdvanceMath.Matrix4x4.Invert(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix4x4.Negate(), AdvanceMath.Matrix2x3.operator Matrix2x3(), AdvanceMath.Matrix3x3.operator Matrix3x3(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Vector4D.operator*(), AdvanceMath.Matrix4x4.operator+(), AdvanceMath.Matrix4x4.operator-(), AdvanceMath.Matrix4x4.operator==(), AdvanceMath.IO.MathReader.ReadMatrix4x4(), AdvanceMath.Matrix4x4.Subtract(), AdvanceMath.Matrix4x4.ToArray(), AdvanceMath.Matrix2x3.ToMatrix4x4(), AdvanceMath.Matrix3x3.ToMatrix4x4(), AdvanceMath.Matrix4x4.ToMatrixArray(), AdvanceMath.Matrix4x4.ToStringInternal(), AdvanceMath.Matrix4x4.ToTransposedArray(), AdvanceMath.Vector3D.Transform(), AdvanceMath.Vector4D.Transform(), AdvanceMath.Matrix4x4.Transpose() ja AdvanceMath.IO.MathWriter.Write().
Scalar AdvanceMath.Matrix4x4.m03 |
Määrittely tiedoston Matrix4x4.cs rivillä 1755.
Viitattu AdvanceMath.Matrix4x4.Matrix4x4(), AdvanceMath.Matrix4x4.Add(), AdvanceMath.Matrix4x4.Equals(), AdvanceMath.Matrix4x4.FromOrthographic(), AdvanceMath.Matrix4x4.FromScale(), AdvanceMath.Matrix4x4.FromTranslation(), AdvanceMath.Matrix4x4.GetAdjoint(), AdvanceMath.Matrix4x4.GetCofactor(), AdvanceMath.Matrix4x4.GetHashCode(), AdvanceMath.Matrix4x4.Invert(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix4x4.Negate(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Vector4D.operator*(), AdvanceMath.Matrix4x4.operator+(), AdvanceMath.Matrix4x4.operator-(), AdvanceMath.Matrix4x4.operator==(), AdvanceMath.IO.MathReader.ReadMatrix4x4(), AdvanceMath.Matrix4x4.Subtract(), AdvanceMath.Matrix4x4.ToArray(), AdvanceMath.Matrix2x3.ToMatrix4x4From2D(), AdvanceMath.Matrix3x3.ToMatrix4x4From2D(), AdvanceMath.Matrix4x4.ToMatrixArray(), AdvanceMath.Matrix4x4.ToStringInternal(), AdvanceMath.Matrix4x4.ToTransposedArray(), AdvanceMath.Vector3D.Transform(), AdvanceMath.Vector4D.Transform(), AdvanceMath.Matrix4x4.Transpose() ja AdvanceMath.IO.MathWriter.Write().
Scalar AdvanceMath.Matrix4x4.m10 |
Määrittely tiedoston Matrix4x4.cs rivillä 1757.
Viitattu AdvanceMath.Matrix4x4.Matrix4x4(), AdvanceMath.Matrix4x4.Add(), AdvanceMath.Matrix4x4.Equals(), AdvanceMath.Matrix4x4.FromOrthographic(), AdvanceMath.Matrix4x4.FromScale(), AdvanceMath.Matrix4x4.FromTranslation(), AdvanceMath.Matrix4x4.GetAdjoint(), AdvanceMath.Matrix4x4.GetCofactor(), AdvanceMath.Matrix4x4.GetHashCode(), AdvanceMath.Matrix4x4.Invert(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix4x4.Negate(), AdvanceMath.Matrix2x3.operator Matrix2x3(), AdvanceMath.Matrix3x3.operator Matrix3x3(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Vector4D.operator*(), AdvanceMath.Matrix4x4.operator+(), AdvanceMath.Matrix4x4.operator-(), AdvanceMath.Matrix4x4.operator==(), AdvanceMath.IO.MathReader.ReadMatrix4x4(), AdvanceMath.Matrix4x4.Subtract(), AdvanceMath.Matrix4x4.ToArray(), AdvanceMath.Matrix2x3.ToMatrix4x4(), AdvanceMath.Matrix3x3.ToMatrix4x4(), AdvanceMath.Matrix2x3.ToMatrix4x4From2D(), AdvanceMath.Matrix3x3.ToMatrix4x4From2D(), AdvanceMath.Matrix4x4.ToMatrixArray(), AdvanceMath.Matrix4x4.ToStringInternal(), AdvanceMath.Matrix4x4.ToTransposedArray(), AdvanceMath.Vector3D.Transform(), AdvanceMath.Vector4D.Transform() ja AdvanceMath.IO.MathWriter.Write().
Scalar AdvanceMath.Matrix4x4.m11 |
Määrittely tiedoston Matrix4x4.cs rivillä 1757.
Viitattu AdvanceMath.Matrix4x4.Matrix4x4(), AdvanceMath.Matrix4x4.Add(), AdvanceMath.Matrix4x4.Equals(), AdvanceMath.Matrix4x4.FromOrthographic(), AdvanceMath.Matrix4x4.FromScale(), AdvanceMath.Matrix4x4.FromTranslation(), AdvanceMath.Matrix4x4.GetAdjoint(), AdvanceMath.Matrix4x4.GetCofactor(), AdvanceMath.Matrix4x4.GetHashCode(), AdvanceMath.Matrix4x4.Invert(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix4x4.Negate(), AdvanceMath.Matrix2x3.operator Matrix2x3(), AdvanceMath.Matrix3x3.operator Matrix3x3(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Vector4D.operator*(), AdvanceMath.Matrix4x4.operator+(), AdvanceMath.Matrix4x4.operator-(), AdvanceMath.Matrix4x4.operator==(), AdvanceMath.IO.MathReader.ReadMatrix4x4(), AdvanceMath.Matrix4x4.Subtract(), AdvanceMath.Matrix4x4.ToArray(), AdvanceMath.Matrix2x3.ToMatrix4x4(), AdvanceMath.Matrix3x3.ToMatrix4x4(), AdvanceMath.Matrix2x3.ToMatrix4x4From2D(), AdvanceMath.Matrix3x3.ToMatrix4x4From2D(), AdvanceMath.Matrix4x4.ToMatrixArray(), AdvanceMath.Matrix4x4.ToStringInternal(), AdvanceMath.Matrix4x4.ToTransposedArray(), AdvanceMath.Vector3D.Transform(), AdvanceMath.Vector4D.Transform() ja AdvanceMath.IO.MathWriter.Write().
Scalar AdvanceMath.Matrix4x4.m12 |
Määrittely tiedoston Matrix4x4.cs rivillä 1757.
Viitattu AdvanceMath.Matrix4x4.Matrix4x4(), AdvanceMath.Matrix4x4.Add(), AdvanceMath.Matrix4x4.Equals(), AdvanceMath.Matrix4x4.FromOrthographic(), AdvanceMath.Matrix4x4.FromScale(), AdvanceMath.Matrix4x4.FromTranslation(), AdvanceMath.Matrix4x4.GetAdjoint(), AdvanceMath.Matrix4x4.GetCofactor(), AdvanceMath.Matrix4x4.GetHashCode(), AdvanceMath.Matrix4x4.Invert(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix4x4.Negate(), AdvanceMath.Matrix2x3.operator Matrix2x3(), AdvanceMath.Matrix3x3.operator Matrix3x3(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Vector4D.operator*(), AdvanceMath.Matrix4x4.operator+(), AdvanceMath.Matrix4x4.operator-(), AdvanceMath.Matrix4x4.operator==(), AdvanceMath.IO.MathReader.ReadMatrix4x4(), AdvanceMath.Matrix4x4.Subtract(), AdvanceMath.Matrix4x4.ToArray(), AdvanceMath.Matrix2x3.ToMatrix4x4(), AdvanceMath.Matrix3x3.ToMatrix4x4(), AdvanceMath.Matrix4x4.ToMatrixArray(), AdvanceMath.Matrix4x4.ToStringInternal(), AdvanceMath.Matrix4x4.ToTransposedArray(), AdvanceMath.Vector3D.Transform(), AdvanceMath.Vector4D.Transform(), AdvanceMath.Matrix4x4.Transpose() ja AdvanceMath.IO.MathWriter.Write().
Scalar AdvanceMath.Matrix4x4.m13 |
Määrittely tiedoston Matrix4x4.cs rivillä 1757.
Viitattu AdvanceMath.Matrix4x4.Matrix4x4(), AdvanceMath.Matrix4x4.Add(), AdvanceMath.Matrix4x4.Equals(), AdvanceMath.Matrix4x4.FromOrthographic(), AdvanceMath.Matrix4x4.FromScale(), AdvanceMath.Matrix4x4.FromTranslation(), AdvanceMath.Matrix4x4.GetAdjoint(), AdvanceMath.Matrix4x4.GetCofactor(), AdvanceMath.Matrix4x4.GetHashCode(), AdvanceMath.Matrix4x4.Invert(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix4x4.Negate(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Vector4D.operator*(), AdvanceMath.Matrix4x4.operator+(), AdvanceMath.Matrix4x4.operator-(), AdvanceMath.Matrix4x4.operator==(), AdvanceMath.IO.MathReader.ReadMatrix4x4(), AdvanceMath.Matrix4x4.Subtract(), AdvanceMath.Matrix4x4.ToArray(), AdvanceMath.Matrix2x3.ToMatrix4x4From2D(), AdvanceMath.Matrix3x3.ToMatrix4x4From2D(), AdvanceMath.Matrix4x4.ToMatrixArray(), AdvanceMath.Matrix4x4.ToStringInternal(), AdvanceMath.Matrix4x4.ToTransposedArray(), AdvanceMath.Vector3D.Transform(), AdvanceMath.Vector4D.Transform(), AdvanceMath.Matrix4x4.Transpose() ja AdvanceMath.IO.MathWriter.Write().
Scalar AdvanceMath.Matrix4x4.m20 |
Määrittely tiedoston Matrix4x4.cs rivillä 1759.
Viitattu AdvanceMath.Matrix4x4.Matrix4x4(), AdvanceMath.Matrix4x4.Add(), AdvanceMath.Matrix4x4.Equals(), AdvanceMath.Matrix4x4.FromOrthographic(), AdvanceMath.Matrix4x4.FromScale(), AdvanceMath.Matrix4x4.FromTranslation(), AdvanceMath.Matrix4x4.GetHashCode(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix4x4.Negate(), AdvanceMath.Matrix3x3.operator Matrix3x3(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Vector4D.operator*(), AdvanceMath.Matrix4x4.operator+(), AdvanceMath.Matrix4x4.operator-(), AdvanceMath.Matrix4x4.operator==(), AdvanceMath.IO.MathReader.ReadMatrix4x4(), AdvanceMath.Matrix4x4.Subtract(), AdvanceMath.Matrix4x4.ToArray(), AdvanceMath.Matrix3x3.ToMatrix4x4(), AdvanceMath.Matrix4x4.ToMatrixArray(), AdvanceMath.Matrix4x4.ToStringInternal(), AdvanceMath.Matrix4x4.ToTransposedArray(), AdvanceMath.Vector3D.Transform(), AdvanceMath.Vector4D.Transform() ja AdvanceMath.IO.MathWriter.Write().
Scalar AdvanceMath.Matrix4x4.m21 |
Määrittely tiedoston Matrix4x4.cs rivillä 1759.
Viitattu AdvanceMath.Matrix4x4.Matrix4x4(), AdvanceMath.Matrix4x4.Add(), AdvanceMath.Matrix4x4.Equals(), AdvanceMath.Matrix4x4.FromOrthographic(), AdvanceMath.Matrix4x4.FromScale(), AdvanceMath.Matrix4x4.FromTranslation(), AdvanceMath.Matrix4x4.GetHashCode(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix4x4.Negate(), AdvanceMath.Matrix3x3.operator Matrix3x3(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Vector4D.operator*(), AdvanceMath.Matrix4x4.operator+(), AdvanceMath.Matrix4x4.operator-(), AdvanceMath.Matrix4x4.operator==(), AdvanceMath.IO.MathReader.ReadMatrix4x4(), AdvanceMath.Matrix4x4.Subtract(), AdvanceMath.Matrix4x4.ToArray(), AdvanceMath.Matrix3x3.ToMatrix4x4(), AdvanceMath.Matrix4x4.ToMatrixArray(), AdvanceMath.Matrix4x4.ToStringInternal(), AdvanceMath.Matrix4x4.ToTransposedArray(), AdvanceMath.Vector3D.Transform(), AdvanceMath.Vector4D.Transform() ja AdvanceMath.IO.MathWriter.Write().
Scalar AdvanceMath.Matrix4x4.m22 |
Määrittely tiedoston Matrix4x4.cs rivillä 1759.
Viitattu AdvanceMath.Matrix4x4.Matrix4x4(), AdvanceMath.Matrix4x4.Add(), AdvanceMath.Matrix4x4.Equals(), AdvanceMath.Matrix4x4.FromOrthographic(), AdvanceMath.Matrix4x4.FromScale(), AdvanceMath.Matrix4x4.FromTranslation(), AdvanceMath.Matrix4x4.GetHashCode(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix4x4.Negate(), AdvanceMath.Matrix3x3.operator Matrix3x3(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Vector4D.operator*(), AdvanceMath.Matrix4x4.operator+(), AdvanceMath.Matrix4x4.operator-(), AdvanceMath.Matrix4x4.operator==(), AdvanceMath.IO.MathReader.ReadMatrix4x4(), AdvanceMath.Matrix4x4.Subtract(), AdvanceMath.Matrix4x4.ToArray(), AdvanceMath.Matrix3x3.ToMatrix4x4(), AdvanceMath.Matrix4x4.ToMatrixArray(), AdvanceMath.Matrix4x4.ToStringInternal(), AdvanceMath.Matrix4x4.ToTransposedArray(), AdvanceMath.Vector3D.Transform(), AdvanceMath.Vector4D.Transform() ja AdvanceMath.IO.MathWriter.Write().
Scalar AdvanceMath.Matrix4x4.m23 |
Määrittely tiedoston Matrix4x4.cs rivillä 1759.
Viitattu AdvanceMath.Matrix4x4.Matrix4x4(), AdvanceMath.Matrix4x4.Add(), AdvanceMath.Matrix4x4.Equals(), AdvanceMath.Matrix4x4.FromOrthographic(), AdvanceMath.Matrix4x4.FromScale(), AdvanceMath.Matrix4x4.FromTranslation(), AdvanceMath.Matrix4x4.GetHashCode(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix4x4.Negate(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Vector4D.operator*(), AdvanceMath.Matrix4x4.operator+(), AdvanceMath.Matrix4x4.operator-(), AdvanceMath.Matrix4x4.operator==(), AdvanceMath.IO.MathReader.ReadMatrix4x4(), AdvanceMath.Matrix4x4.Subtract(), AdvanceMath.Matrix4x4.ToArray(), AdvanceMath.Matrix4x4.ToMatrixArray(), AdvanceMath.Matrix4x4.ToStringInternal(), AdvanceMath.Matrix4x4.ToTransposedArray(), AdvanceMath.Vector3D.Transform(), AdvanceMath.Vector4D.Transform(), AdvanceMath.Matrix4x4.Transpose() ja AdvanceMath.IO.MathWriter.Write().
Scalar AdvanceMath.Matrix4x4.m30 |
Määrittely tiedoston Matrix4x4.cs rivillä 1761.
Viitattu AdvanceMath.Matrix4x4.Matrix4x4(), AdvanceMath.Matrix4x4.Add(), AdvanceMath.Matrix4x4.Equals(), AdvanceMath.Matrix4x4.FromOrthographic(), AdvanceMath.Matrix4x4.FromScale(), AdvanceMath.Matrix4x4.FromTranslation(), AdvanceMath.Matrix4x4.GetHashCode(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix4x4.Negate(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Vector4D.operator*(), AdvanceMath.Matrix4x4.operator+(), AdvanceMath.Matrix4x4.operator-(), AdvanceMath.Matrix4x4.operator==(), AdvanceMath.IO.MathReader.ReadMatrix4x4(), AdvanceMath.Matrix4x4.Subtract(), AdvanceMath.Matrix4x4.ToArray(), AdvanceMath.Matrix3x3.ToMatrix4x4From2D(), AdvanceMath.Matrix4x4.ToMatrixArray(), AdvanceMath.Matrix4x4.ToStringInternal(), AdvanceMath.Matrix4x4.ToTransposedArray(), AdvanceMath.Vector3D.Transform(), AdvanceMath.Vector4D.Transform() ja AdvanceMath.IO.MathWriter.Write().
Scalar AdvanceMath.Matrix4x4.m31 |
Määrittely tiedoston Matrix4x4.cs rivillä 1761.
Viitattu AdvanceMath.Matrix4x4.Matrix4x4(), AdvanceMath.Matrix4x4.Add(), AdvanceMath.Matrix4x4.Equals(), AdvanceMath.Matrix4x4.FromOrthographic(), AdvanceMath.Matrix4x4.FromScale(), AdvanceMath.Matrix4x4.FromTranslation(), AdvanceMath.Matrix4x4.GetHashCode(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix4x4.Negate(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Vector4D.operator*(), AdvanceMath.Matrix4x4.operator+(), AdvanceMath.Matrix4x4.operator-(), AdvanceMath.Matrix4x4.operator==(), AdvanceMath.IO.MathReader.ReadMatrix4x4(), AdvanceMath.Matrix4x4.Subtract(), AdvanceMath.Matrix4x4.ToArray(), AdvanceMath.Matrix3x3.ToMatrix4x4From2D(), AdvanceMath.Matrix4x4.ToMatrixArray(), AdvanceMath.Matrix4x4.ToStringInternal(), AdvanceMath.Matrix4x4.ToTransposedArray(), AdvanceMath.Vector3D.Transform(), AdvanceMath.Vector4D.Transform() ja AdvanceMath.IO.MathWriter.Write().
Scalar AdvanceMath.Matrix4x4.m32 |
Määrittely tiedoston Matrix4x4.cs rivillä 1761.
Viitattu AdvanceMath.Matrix4x4.Matrix4x4(), AdvanceMath.Matrix4x4.Add(), AdvanceMath.Matrix4x4.Equals(), AdvanceMath.Matrix4x4.FromOrthographic(), AdvanceMath.Matrix4x4.FromScale(), AdvanceMath.Matrix4x4.FromTranslation(), AdvanceMath.Matrix4x4.GetHashCode(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix4x4.Negate(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Vector4D.operator*(), AdvanceMath.Matrix4x4.operator+(), AdvanceMath.Matrix4x4.operator-(), AdvanceMath.Matrix4x4.operator==(), AdvanceMath.IO.MathReader.ReadMatrix4x4(), AdvanceMath.Matrix4x4.Subtract(), AdvanceMath.Matrix4x4.ToArray(), AdvanceMath.Matrix4x4.ToMatrixArray(), AdvanceMath.Matrix4x4.ToStringInternal(), AdvanceMath.Matrix4x4.ToTransposedArray(), AdvanceMath.Vector3D.Transform(), AdvanceMath.Vector4D.Transform() ja AdvanceMath.IO.MathWriter.Write().
Scalar AdvanceMath.Matrix4x4.m33 |
Määrittely tiedoston Matrix4x4.cs rivillä 1761.
Viitattu AdvanceMath.Matrix4x4.Matrix4x4(), AdvanceMath.Matrix4x4.Add(), AdvanceMath.Matrix4x4.Equals(), AdvanceMath.Matrix4x4.FromOrthographic(), AdvanceMath.Matrix4x4.FromScale(), AdvanceMath.Matrix4x4.FromTranslation(), AdvanceMath.Matrix4x4.GetHashCode(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix4x4.Negate(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Vector4D.operator*(), AdvanceMath.Matrix4x4.operator+(), AdvanceMath.Matrix4x4.operator-(), AdvanceMath.Matrix4x4.operator==(), AdvanceMath.IO.MathReader.ReadMatrix4x4(), AdvanceMath.Matrix4x4.Subtract(), AdvanceMath.Matrix4x4.ToArray(), AdvanceMath.Matrix3x3.ToMatrix4x4From2D(), AdvanceMath.Matrix4x4.ToMatrixArray(), AdvanceMath.Matrix4x4.ToStringInternal(), AdvanceMath.Matrix4x4.ToTransposedArray(), AdvanceMath.Vector3D.Transform(), AdvanceMath.Vector4D.Transform() ja AdvanceMath.IO.MathWriter.Write().
|
static |
The number of rows.
Määrittely tiedoston Matrix4x4.cs rivillä 51.
Viitattu AdvanceMath.Matrix4x4.GetRow(), AdvanceMath.Matrix4x4.SetRow() ja AdvanceMath.Matrix4x4.ToMatrixArray().
The Size of the class in bytes;
Määrittely tiedoston Matrix4x4.cs rivillä 63.
|
static |
Määrittely tiedoston Matrix4x4.cs rivillä 66.
Viitattu AdvanceMath.Matrix4x4.Parse() ja AdvanceMath.Matrix4x4.TryParse().
|
get |
Used to generate the adjoint of this matrix..
Määrittely tiedoston Matrix4x4.cs rivillä 2007.
|
get |
Used to generate the Cofactor of this matrix.
Määrittely tiedoston Matrix4x4.cs rivillä 1994.
|
get |
Määrittely tiedoston Matrix4x4.cs rivillä 2037.
|
get |
Määrittely tiedoston Matrix4x4.cs rivillä 2035.
|
getset |
Määrittely tiedoston Matrix4x4.cs rivillä 1942.
Viitattu AdvanceMath.Matrix4x4.GetColumn() ja AdvanceMath.Matrix4x4.SetColumn().
|
getset |
Määrittely tiedoston Matrix4x4.cs rivillä 1882.
Viitattu AdvanceMath.Matrix4x4.GetColumn() ja AdvanceMath.Matrix4x4.SetColumn().
|
getset |
Määrittely tiedoston Matrix4x4.cs rivillä 1902.
Viitattu AdvanceMath.Matrix4x4.GetColumn() ja AdvanceMath.Matrix4x4.SetColumn().
|
getset |
Määrittely tiedoston Matrix4x4.cs rivillä 1922.
Viitattu AdvanceMath.Matrix4x4.GetColumn() ja AdvanceMath.Matrix4x4.SetColumn().
|
get |
Gets the determinant of this matrix.
Määrittely tiedoston Matrix4x4.cs rivillä 1966.
|
get |
written to test out a theory. a very wasteful implimentation. but works.
Returns an inverted 4d matrix.
Määrittely tiedoston Matrix4x4.cs rivillä 2024.
|
get |
Määrittely tiedoston Matrix4x4.cs rivillä 2036.
|
getset |
Määrittely tiedoston Matrix4x4.cs rivillä 1862.
Viitattu AdvanceMath.Matrix4x4.GetRow() ja AdvanceMath.Matrix4x4.SetRow().
|
getset |
Määrittely tiedoston Matrix4x4.cs rivillä 1793.
Viitattu AdvanceMath.Matrix4x4.GetRow() ja AdvanceMath.Matrix4x4.SetRow().
|
getset |
Määrittely tiedoston Matrix4x4.cs rivillä 1816.
Viitattu AdvanceMath.Matrix4x4.GetRow() ja AdvanceMath.Matrix4x4.SetRow().
|
getset |
Määrittely tiedoston Matrix4x4.cs rivillä 1839.
Viitattu AdvanceMath.Matrix4x4.GetRow() ja AdvanceMath.Matrix4x4.SetRow().
|
get |
Swap the rows of the matrix with the columns.
Määrittely tiedoston Matrix4x4.cs rivillä 1980.