Jypeli 10
The simple game programming library
|
A 3x3 matrix which can represent rotations around axes. Lisää...
Julkiset jäsenfunktiot | |
Matrix3x3 (Scalar m00, Scalar m01, Scalar m02, Scalar m10, Scalar m11, Scalar m12, Scalar m20, Scalar m21, Scalar m22) | |
Creates a new Matrix3 with all the specified parameters. Lisää... | |
Matrix3x3 (Scalar[] values) | |
Matrix3x3 (Scalar[] values, int index) | |
Matrix3x3 (Vector3D xAxis, Vector3D yAxis, Vector3D zAxis) | |
Create a new Matrix from 3 Vertex3 objects. Lisää... | |
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 (Matrix3x3 other) |
override bool | Equals (object obj) |
Vector3D | GetColumn (int columnIndex) |
override int | GetHashCode () |
Vector3D | GetRow (int rowIndex) |
void | SetColumn (int columnIndex, Vector3D value) |
void | SetRow (int rowIndex, Vector3D value) |
Scalar[] | ToArray () |
Copies the elements of the IAdvanceValueType to a new array of Scalar . Lisää... | |
Matrix4x4 | ToMatrix4x4 () |
Matrix4x4 | ToMatrix4x4From2D () |
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< Matrix3x3, Vector3D, Vector3D > | |
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 Matrix3x3 | Add (Matrix2x2 left, Matrix3x3 right) |
static Matrix3x3 | Add (Matrix3x3 left, Matrix2x2 right) |
static Matrix3x3 | Add (Matrix3x3 left, Matrix3x3 right) |
Used to add two matrices together. Lisää... | |
static void | Add (ref Matrix2x2 left, ref Matrix3x3 right, out Matrix3x3 result) |
static void | Add (ref Matrix3x3 left, ref Matrix2x2 right, out Matrix3x3 result) |
static void | Add (ref Matrix3x3 left, ref Matrix3x3 right, out Matrix3x3 result) |
static void | Copy (ref Matrix2x2 source, ref Matrix3x3 dest) |
static void | Copy (ref Matrix3x3 matrix, Scalar[] destArray) |
static void | Copy (ref Matrix3x3 matrix, Scalar[] destArray, int index) |
static void | Copy (ref Matrix4x4 source, out Matrix3x3 dest) |
static void | Copy (Scalar[] sourceArray, int index, out Matrix3x3 result) |
static void | Copy (Scalar[] sourceArray, out Matrix3x3 result) |
static void | Copy2DToOpenGlMatrix (ref Matrix3x3 source, Scalar[] destArray) |
static void | CopyTranspose (ref Matrix3x3 matrix, Scalar[] destArray) |
static void | CopyTranspose (ref Matrix3x3 matrix, Scalar[] destArray, int index) |
static void | CopyTranspose (Scalar[] sourceArray, int index, out Matrix3x3 result) |
static void | CopyTranspose (Scalar[] sourceArray, out Matrix3x3 result) |
static bool | Equals (Matrix3x3 left, Matrix3x3 right) |
static bool | Equals (ref Matrix3x3 left, ref Matrix3x3 right) |
static Matrix3x3 | FromArray (Scalar[] array) |
static Matrix3x3 | FromEulerAnglesXYZ (Scalar yaw, Scalar pitch, Scalar roll) |
Constructs this Matrix from 3 euler angles, in degrees. Lisää... | |
static Matrix3x3 | FromRotationAxis (Scalar radianAngle, Vector3D axis) |
static Matrix3x3 | FromRotationAxisUsingAtan (Scalar radianAngle, Vector3D axis) |
static void | FromRotationX (ref Scalar radianAngle, out Matrix3x3 result) |
static Matrix3x3 | FromRotationX (Scalar radianAngle) |
static void | FromRotationY (ref Scalar radianAngle, out Matrix3x3 result) |
static Matrix3x3 | FromRotationY (Scalar radianAngle) |
static void | FromRotationZ (ref Scalar radianAngle, out Matrix3x3 result) |
static Matrix3x3 | FromRotationZ (Scalar radianAngle) |
static void | FromScale (ref Vector2D scale, out Matrix3x3 result) |
static void | FromScale (ref Vector3D scale, out Matrix3x3 result) |
static Matrix3x3 | FromScale (Vector2D scale) |
static Matrix3x3 | FromScale (Vector3D scale) |
static void | FromShear3D (ref Vector2D value, out Matrix3x3 result) |
static Matrix3x3 | FromShear3D (Vector2D value) |
static void | FromTransformation (ref Scalar rotation, ref Vector2D translation, out Matrix3x3 result) |
static Matrix3x3 | FromTransformation (Scalar rotation, Vector2D translation) |
static void | FromTranslate2D (ref Vector2D value, out Matrix3x3 result) |
static Matrix3x3 | FromTranslate2D (Vector2D value) |
static Matrix3x3 | FromTransposedArray (Scalar[] array) |
static Matrix3x3 | GetAdjoint (Matrix3x3 source) |
static void | GetAdjoint (ref Matrix3x3 source, out Matrix3x3 result) |
static Matrix3x3 | GetCofactor (Matrix3x3 source) |
static void | GetCofactor (ref Matrix3x3 source, out Matrix3x3 result) |
static Scalar | GetDeterminant (Matrix3x3 source) |
static void | GetDeterminant (ref Matrix3x3 source, out Scalar result) |
static Scalar | GetDeterminant (Scalar m00, Scalar m01, Scalar m02, Scalar m10, Scalar m11, Scalar m12, Scalar m20, Scalar m21, Scalar m22) |
static Scalar | GetDeterminant (Vector3D Rx, Vector3D Ry, Vector3D Rz) |
static Matrix3x3 | Invert (Matrix3x3 source) |
static void | Invert (ref Matrix3x3 source, out Matrix3x3 result) |
static Matrix3x3 | Lerp (Matrix3x3 left, Matrix3x3 right, Scalar amount) |
static void | Lerp (ref Matrix3x3 left, ref Matrix3x3 right, ref Scalar amount, out Matrix3x3 result) |
static Matrix3x3 | Multiply (Matrix2x2 left, Matrix3x3 right) |
Used to multiply (concatenate) a Matrix3x3 and a Matrix2x2. Lisää... | |
static Matrix3x3 | Multiply (Matrix3x3 left, Matrix2x2 right) |
Used to multiply (concatenate) a Matrix3x3 and a Matrix2x2. Lisää... | |
static Matrix3x3 | Multiply (Matrix3x3 left, Matrix3x3 right) |
Used to multiply (concatenate) two Matrix4x4s. Lisää... | |
static Matrix3x3 | Multiply (Matrix3x3 left, Scalar scalar) |
Used to multiply a Matrix3x3 object by a scalar value.. Lisää... | |
static void | Multiply (ref Matrix2x2 left, ref Matrix3x3 right, out Matrix3x3 result) |
static void | Multiply (ref Matrix3x3 left, ref Matrix2x2 right, out Matrix3x3 result) |
static void | Multiply (ref Matrix3x3 left, ref Matrix3x3 right, out Matrix3x3 result) |
static void | Multiply (ref Matrix3x3 left, ref Scalar scalar, out Matrix3x3 result) |
static Matrix3x3 | Negate (Matrix3x3 source) |
Negates a Matrix3x3. Lisää... | |
static void | Negate (ref Matrix3x3 source) |
static void | Negate (ref Matrix3x3 source, out Matrix3x3 result) |
static | operator Matrix3x3 (Matrix2x2 source) |
static | operator Matrix3x3 (Matrix4x4 source) |
static bool | operator!= (Matrix3x3 left, Matrix3x3 right) |
static Matrix3x3 | operator* (Matrix2x2 left, Matrix3x3 right) |
Multiply (concatenate) a Matrix3x3 and a Matrix2x2 Lisää... | |
static Matrix3x3 | operator* (Matrix3x3 left, Matrix2x2 right) |
Multiply (concatenate) a Matrix3x3 and a Matrix2x2 Lisää... | |
static Matrix3x3 | operator* (Matrix3x3 left, Matrix3x3 right) |
Multiply (concatenate) two Matrix3 instances together. Lisää... | |
static Matrix3x3 | operator* (Matrix3x3 matrix, Scalar scalar) |
Multiplies all the items in the Matrix3 by a scalar value. Lisää... | |
static Matrix3x3 | operator* (Scalar scalar, Matrix3x3 matrix) |
Multiplies all the items in the Matrix3 by a scalar value. Lisää... | |
static Matrix3x3 | operator+ (Matrix2x2 left, Matrix3x3 right) |
static Matrix3x3 | operator+ (Matrix3x3 left, Matrix2x2 right) |
static Matrix3x3 | operator+ (Matrix3x3 left, Matrix3x3 right) |
Used to add two matrices together. Lisää... | |
static Matrix3x3 | operator- (Matrix2x2 left, Matrix3x3 right) |
static Matrix3x3 | operator- (Matrix3x3 left, Matrix2x2 right) |
static Matrix3x3 | operator- (Matrix3x3 left, Matrix3x3 right) |
Used to subtract two matrices. Lisää... | |
static Matrix3x3 | operator- (Matrix3x3 matrix) |
Negates all the items in the Matrix. Lisää... | |
static bool | operator== (Matrix3x3 left, Matrix3x3 right) |
Test two matrices for (value) equality Lisää... | |
static Matrix3x3 | Parse (string s) |
static Matrix3x3 | Subtract (Matrix2x2 left, Matrix3x3 right) |
static Matrix3x3 | Subtract (Matrix3x3 left, Matrix2x2 right) |
static Matrix3x3 | Subtract (Matrix3x3 left, Matrix3x3 right) |
Used to subtract two matrices. Lisää... | |
static void | Subtract (ref Matrix2x2 left, ref Matrix3x3 right, out Matrix3x3 result) |
static void | Subtract (ref Matrix3x3 left, ref Matrix2x2 right, out Matrix3x3 result) |
static void | Subtract (ref Matrix3x3 left, ref Matrix3x3 right, out Matrix3x3 result) |
static Matrix3x3 | Transpose (Matrix3x3 source) |
static void | Transpose (ref Matrix3x3 source, out Matrix3x3 result) |
static bool | TryParse (string s, out Matrix3x3 result) |
Julkiset attribuutit | |
Scalar | m00 |
Scalar | m01 |
Scalar | m02 |
Scalar | m10 |
Scalar | m11 |
Scalar | m12 |
Scalar | m20 |
Scalar | m21 |
Scalar | m22 |
Staattiset julkiset attribuutit | |
const int | ColumnCount = 3 |
The number of columns. Lisää... | |
const int | Count = RowCount * ColumnCount |
The number of Scalar values in the class. Lisää... | |
static readonly Matrix3x3 | Identity |
const int | RowCount = 3 |
The number of rows. Lisää... | |
const int | Size = sizeof(Scalar) * Count |
The Size of the class in bytes; Lisää... | |
static readonly Matrix3x3 | Zero |
Paketin staattiset funktiot | |
static Matrix3x3 | FromLookAt (Vector3D origin, Vector3D positiveZAxis, Vector3D onPositiveY) |
Ominaisuudet | |
Matrix3x3 | Adjoint [get] |
Matrix3x3 | Cofactor [get] |
int IMatrix. | ColumnCount [get] |
int IAdvanceValueType. | Count [get] |
Vector3D | Cx [getset] |
Vector3D | Cy [getset] |
Vector3D | Cz [getset] |
Scalar | Determinant [get] |
Matrix3x3 | Inverted [get] |
int IMatrix. | RowCount [get] |
Vector3D | Rx [getset] |
Vector3D | Ry [getset] |
Vector3D | Rz [getset] |
Matrix3x3 | Transposed [get] |
Swap the rows of the matrix with the columns. Lisää... | |
Ominaisuudet inherited from AdvanceMath.IMatrix< Matrix3x3, Vector3D, Vector3D > | |
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) |
A 3x3 matrix which can represent rotations around axes.
Määrittely tiedoston Matrix3x3.cs rivillä 61.
AdvanceMath.Matrix3x3.Matrix3x3 | ( | Scalar | m00, |
Scalar | m01, | ||
Scalar | m02, | ||
Scalar | m10, | ||
Scalar | m11, | ||
Scalar | m12, | ||
Scalar | m20, | ||
Scalar | m21, | ||
Scalar | m22 | ||
) |
Creates a new Matrix3 with all the specified parameters.
Määrittely tiedoston Matrix3x3.cs rivillä 1193.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
Create a new Matrix from 3 Vertex3 objects.
xAxis | |
yAxis | |
zAxis |
Määrittely tiedoston Matrix3x3.cs rivillä 1209.
Viittaukset AdvanceMath.Vector3D.X, AdvanceMath.Vector3D.Y ja AdvanceMath.Vector3D.Z.
AdvanceMath.Matrix3x3.Matrix3x3 | ( | Scalar[] | values | ) |
Määrittely tiedoston Matrix3x3.cs rivillä 1215.
AdvanceMath.Matrix3x3.Matrix3x3 | ( | Scalar[] | values, |
int | index | ||
) |
Määrittely tiedoston Matrix3x3.cs rivillä 1216.
Viittaukset AdvanceMath.Matrix3x3.Copy().
Määrittely tiedoston Matrix3x3.cs rivillä 473.
Viittaukset AdvanceMath.Matrix3x3.Add().
Määrittely tiedoston Matrix3x3.cs rivillä 493.
Viittaukset AdvanceMath.Matrix3x3.Add().
Used to add two matrices together.
left | |
right |
Määrittely tiedoston Matrix3x3.cs rivillä 440.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
Viitattu AdvanceMath.Matrix3x3.Add() ja AdvanceMath.Matrix3x3.operator+().
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 479.
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 499.
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 458.
Määrittely tiedoston Matrix3x3.cs rivillä 192.
Määrittely tiedoston Matrix3x3.cs rivillä 96.
Viittaukset AdvanceMath.Matrix3x3.Copy().
Viitattu AdvanceMath.Matrix3x3.Matrix3x3(), AdvanceMath.Matrix3x3.Copy(), AdvanceMath.Matrix3x3.CopyFrom(), AdvanceMath.Matrix3x3.CopyTo() ja AdvanceMath.Matrix3x3.FromArray().
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 100.
Viittaukset AdvanceMath.ThrowHelper.CheckCopy() ja AdvanceMath.Matrix3x3.Count.
Määrittely tiedoston Matrix3x3.cs rivillä 178.
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 120.
Viittaukset AdvanceMath.ThrowHelper.CheckCopy() ja AdvanceMath.Matrix3x3.Count.
Määrittely tiedoston Matrix3x3.cs rivillä 116.
Viittaukset AdvanceMath.Matrix3x3.Copy().
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 201.
void AdvanceMath.Matrix3x3.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 Matrix3x3.cs rivillä 1482.
Viittaukset AdvanceMath.Matrix3x3.Copy().
void AdvanceMath.Matrix3x3.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 Matrix3x3.cs rivillä 1474.
Viittaukset AdvanceMath.Matrix3x3.Copy().
Määrittely tiedoston Matrix3x3.cs rivillä 137.
Viittaukset AdvanceMath.Matrix3x3.CopyTranspose().
Viitattu AdvanceMath.Matrix3x3.CopyTranspose(), AdvanceMath.Matrix3x3.CopyTransposedFrom(), AdvanceMath.Matrix3x3.CopyTransposedTo() ja AdvanceMath.Matrix3x3.FromTransposedArray().
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 141.
Viittaukset AdvanceMath.ThrowHelper.CheckCopy() ja AdvanceMath.Matrix3x3.Count.
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 161.
Viittaukset AdvanceMath.ThrowHelper.CheckCopy() ja AdvanceMath.Matrix3x3.Count.
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 157.
Viittaukset AdvanceMath.Matrix3x3.CopyTranspose().
void AdvanceMath.Matrix3x3.CopyTransposedFrom | ( | Scalar[] | array, |
int | index | ||
) |
Määrittely tiedoston Matrix3x3.cs rivillä 1486.
Viittaukset AdvanceMath.Matrix3x3.CopyTranspose().
void AdvanceMath.Matrix3x3.CopyTransposedTo | ( | Scalar[] | array, |
int | index | ||
) |
Määrittely tiedoston Matrix3x3.cs rivillä 1478.
Viittaukset AdvanceMath.Matrix3x3.CopyTranspose().
Määrittely tiedoston Matrix3x3.cs rivillä 1159.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
Viitattu AdvanceMath.Matrix3x3.Equals().
bool AdvanceMath.Matrix3x3.Equals | ( | Matrix3x3 | other | ) |
Määrittely tiedoston Matrix3x3.cs rivillä 1523.
Viittaukset AdvanceMath.Matrix3x3.Equals().
override bool AdvanceMath.Matrix3x3.Equals | ( | object | obj | ) |
Määrittely tiedoston Matrix3x3.cs rivillä 1517.
Viittaukset AdvanceMath.Matrix3x3.Equals().
Määrittely tiedoston Matrix3x3.cs rivillä 1166.
Määrittely tiedoston Matrix3x3.cs rivillä 794.
Viittaukset AdvanceMath.Matrix3x3.Copy().
|
static |
Constructs this Matrix from 3 euler angles, in degrees.
yaw | |
pitch | |
roll |
Määrittely tiedoston Matrix3x3.cs rivillä 1138.
Viittaukset AdvanceMath.Matrix3x3.FromRotationX(), AdvanceMath.Matrix3x3.FromRotationY() ja AdvanceMath.Matrix3x3.FromRotationZ().
|
staticpackage |
Määrittely tiedoston Matrix3x3.cs rivillä 970.
Viittaukset AdvanceMath.Matrix3x3.Identity, AdvanceMath.Vector3D.Normalize(), AdvanceMath.Matrix3x3.Rx, AdvanceMath.Matrix3x3.Ry ja AdvanceMath.Matrix3x3.Rz.
Viitattu AdvanceMath.Matrix4x4.FromLookAt() ja AdvanceMath.Matrix3x3.FromRotationAxis().
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 965.
Viittaukset AdvanceMath.Matrix3x3.FromLookAt(), AdvanceMath.Matrix3x3.FromRotationZ(), AdvanceMath.Matrix3x3.Inverted, AdvanceMath.Vector3D.X, AdvanceMath.Vector3D.Y, AdvanceMath.Vector3D.Z ja AdvanceMath.Vector3D.Zero.
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 937.
Viittaukset AdvanceMath.Matrix3x3.FromRotationX(), AdvanceMath.Matrix3x3.FromRotationY(), AdvanceMath.Matrix3x3.FromRotationZ(), AdvanceMath.MathHelper.PiOver2, AdvanceMath.Vector3D.X, AdvanceMath.Vector3D.Y ja AdvanceMath.Vector3D.Z.
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 846.
Viittaukset AdvanceMath.MathHelper.Cos() ja AdvanceMath.MathHelper.Sin().
Määrittely tiedoston Matrix3x3.cs rivillä 826.
Viittaukset AdvanceMath.MathHelper.Cos(), AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21, AdvanceMath.Matrix3x3.m22 ja AdvanceMath.MathHelper.Sin().
Viitattu AdvanceMath.Matrix3x3.FromEulerAnglesXYZ() ja AdvanceMath.Matrix3x3.FromRotationAxisUsingAtan().
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 882.
Viittaukset AdvanceMath.MathHelper.Cos() ja AdvanceMath.MathHelper.Sin().
Määrittely tiedoston Matrix3x3.cs rivillä 862.
Viittaukset AdvanceMath.MathHelper.Cos(), AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21, AdvanceMath.Matrix3x3.m22 ja AdvanceMath.MathHelper.Sin().
Viitattu AdvanceMath.Matrix3x3.FromEulerAnglesXYZ() ja AdvanceMath.Matrix3x3.FromRotationAxisUsingAtan().
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 919.
Viittaukset AdvanceMath.MathHelper.Cos() ja AdvanceMath.MathHelper.Sin().
Määrittely tiedoston Matrix3x3.cs rivillä 899.
Viittaukset AdvanceMath.MathHelper.Cos(), AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21, AdvanceMath.Matrix3x3.m22 ja AdvanceMath.MathHelper.Sin().
Viitattu AdvanceMath.Matrix3x3.FromEulerAnglesXYZ(), AdvanceMath.Matrix3x3.FromRotationAxis() ja AdvanceMath.Matrix3x3.FromRotationAxisUsingAtan().
Määrittely tiedoston Matrix3x3.cs rivillä 1028.
Määrittely tiedoston Matrix3x3.cs rivillä 998.
Määrittely tiedoston Matrix3x3.cs rivillä 1012.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21, AdvanceMath.Matrix3x3.m22, AdvanceMath.Vector2D.X ja AdvanceMath.Vector2D.Y.
Määrittely tiedoston Matrix3x3.cs rivillä 980.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21, AdvanceMath.Matrix3x3.m22, AdvanceMath.Vector3D.X, AdvanceMath.Vector3D.Y ja AdvanceMath.Vector3D.Z.
Määrittely tiedoston Matrix3x3.cs rivillä 1092.
Määrittely tiedoston Matrix3x3.cs rivillä 1074.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21, AdvanceMath.Matrix3x3.m22, AdvanceMath.Vector2D.X ja AdvanceMath.Vector2D.Y.
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 813.
Viittaukset AdvanceMath.MathHelper.Cos() ja AdvanceMath.MathHelper.Sin().
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 807.
Viittaukset AdvanceMath.Matrix3x3.FromTransformation().
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 1060.
Määrittely tiedoston Matrix3x3.cs rivillä 1042.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21, AdvanceMath.Matrix3x3.m22, AdvanceMath.Vector2D.X ja AdvanceMath.Vector2D.Y.
Määrittely tiedoston Matrix3x3.cs rivillä 800.
Viittaukset AdvanceMath.Matrix3x3.CopyTranspose().
Määrittely tiedoston Matrix3x3.cs rivillä 724.
Viittaukset AdvanceMath.Matrix3x3.GetAdjoint().
Viitattu AdvanceMath.Matrix3x3.GetAdjoint().
Määrittely tiedoston Matrix3x3.cs rivillä 730.
Viittaukset AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m11 ja AdvanceMath.Matrix3x3.m12.
Määrittely tiedoston Matrix3x3.cs rivillä 758.
Viittaukset AdvanceMath.Matrix3x3.GetCofactor().
Viitattu AdvanceMath.Matrix3x3.GetCofactor().
Määrittely tiedoston Matrix3x3.cs rivillä 764.
Viittaukset AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m11 ja AdvanceMath.Matrix3x3.m12.
Vector3D AdvanceMath.Matrix3x3.GetColumn | ( | int | columnIndex | ) |
Määrittely tiedoston Matrix3x3.cs rivillä 1384.
Viittaukset AdvanceMath.Matrix3x3.ColumnCount, AdvanceMath.Matrix3x3.Cx, AdvanceMath.Matrix3x3.Cy, AdvanceMath.Matrix3x3.Cz ja AdvanceMath.ThrowHelper.GetThrowIndex().
Määrittely tiedoston Matrix3x3.cs rivillä 681.
Viittaukset AdvanceMath.Matrix3x3.GetDeterminant().
Viitattu AdvanceMath.Matrix3x3.GetDeterminant() ja AdvanceMath.Vector4D.TripleCross().
Määrittely tiedoston Matrix3x3.cs rivillä 687.
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 1107.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
Määrittely tiedoston Matrix3x3.cs rivillä 1120.
Viittaukset AdvanceMath.Matrix3x3.Rx, AdvanceMath.Matrix3x3.Ry, AdvanceMath.Matrix3x3.Rz, AdvanceMath.Vector3D.X, AdvanceMath.Vector3D.Y ja AdvanceMath.Vector3D.Z.
override int AdvanceMath.Matrix3x3.GetHashCode | ( | ) |
Määrittely tiedoston Matrix3x3.cs rivillä 1509.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
Vector3D AdvanceMath.Matrix3x3.GetRow | ( | int | rowIndex | ) |
Määrittely tiedoston Matrix3x3.cs rivillä 1414.
Viittaukset AdvanceMath.ThrowHelper.GetThrowIndex(), AdvanceMath.Matrix3x3.RowCount, AdvanceMath.Matrix3x3.Rx, AdvanceMath.Matrix3x3.Ry ja AdvanceMath.Matrix3x3.Rz.
Määrittely tiedoston Matrix3x3.cs rivillä 639.
Viittaukset AdvanceMath.Matrix3x3.Invert().
Viitattu AdvanceMath.Matrix3x3.Invert().
Määrittely tiedoston Matrix3x3.cs rivillä 645.
Viittaukset AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m11 ja AdvanceMath.Matrix3x3.m12.
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 220.
Viittaukset AdvanceMath.Matrix3x3.Lerp().
Viitattu AdvanceMath.Matrix3x3.Lerp().
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 226.
Used to multiply (concatenate) a Matrix3x3 and a Matrix2x2.
left | |
right |
Määrittely tiedoston Matrix3x3.cs rivillä 388.
Viittaukset AdvanceMath.Matrix2x2.m00, AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix2x2.m01, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix2x2.m10, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix2x2.m11, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
Used to multiply (concatenate) a Matrix3x3 and a Matrix2x2.
left | |
right |
Määrittely tiedoston Matrix3x3.cs rivillä 340.
Viittaukset AdvanceMath.Matrix2x2.m00, AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix2x2.m01, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix2x2.m10, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix2x2.m11, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
Used to multiply (concatenate) two Matrix4x4s.
left | |
right |
Määrittely tiedoston Matrix3x3.cs rivillä 248.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
Used to multiply a Matrix3x3 object by a scalar value..
left | |
scalar |
Määrittely tiedoston Matrix3x3.cs rivillä 300.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 408.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11 ja AdvanceMath.Matrix3x3.m12.
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 358.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m20 ja AdvanceMath.Matrix3x3.m21.
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 266.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 318.
Negates a Matrix3x3.
Määrittely tiedoston Matrix3x3.cs rivillä 601.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
Viitattu AdvanceMath.Matrix3x3.Negate().
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 620.
Viittaukset AdvanceMath.Matrix3x3.Negate().
Määrittely tiedoston Matrix3x3.cs rivillä 624.
Määrittely tiedoston Matrix3x3.cs rivillä 1850.
Viittaukset AdvanceMath.Matrix2x2.m00, AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix2x2.m01, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix2x2.m10, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix2x2.m11, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
Määrittely tiedoston Matrix3x3.cs rivillä 1832.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix3x3.m21, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix3x3.m22 ja AdvanceMath.Matrix4x4.m22.
Määrittely tiedoston Matrix3x3.cs rivillä 1826.
Multiply (concatenate) a Matrix3x3 and a Matrix2x2
left | |
right |
Määrittely tiedoston Matrix3x3.cs rivillä 1631.
Viittaukset AdvanceMath.Matrix2x2.m00, AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix2x2.m01, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix2x2.m10, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix2x2.m11, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
Multiply (concatenate) a Matrix3x3 and a Matrix2x2
left | |
right |
Määrittely tiedoston Matrix3x3.cs rivillä 1656.
Viittaukset AdvanceMath.Matrix2x2.m00, AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix2x2.m01, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix2x2.m10, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix2x2.m11, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
Multiply (concatenate) two Matrix3 instances together.
left | |
right |
Määrittely tiedoston Matrix3x3.cs rivillä 1606.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
Multiplies all the items in the Matrix3 by a scalar value.
matrix | |
scalar |
Määrittely tiedoston Matrix3x3.cs rivillä 1682.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
Multiplies all the items in the Matrix3 by a scalar value.
matrix | |
scalar |
Määrittely tiedoston Matrix3x3.cs rivillä 1704.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
Määrittely tiedoston Matrix3x3.cs rivillä 1744.
Viittaukset AdvanceMath.Matrix3x3.Add().
Määrittely tiedoston Matrix3x3.cs rivillä 1750.
Viittaukset AdvanceMath.Matrix3x3.Add().
Used to add two matrices together.
left | |
right |
Määrittely tiedoston Matrix3x3.cs rivillä 1726.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
Määrittely tiedoston Matrix3x3.cs rivillä 1780.
Viittaukset AdvanceMath.Matrix3x3.Subtract().
Määrittely tiedoston Matrix3x3.cs rivillä 1786.
Viittaukset AdvanceMath.Matrix3x3.Subtract().
Used to subtract two matrices.
left | |
right |
Määrittely tiedoston Matrix3x3.cs rivillä 1762.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
Negates all the items in the Matrix.
matrix |
Määrittely tiedoston Matrix3x3.cs rivillä 1797.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
Test two matrices for (value) equality
left | |
right |
Määrittely tiedoston Matrix3x3.cs rivillä 1819.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 1144.
Viittaukset AdvanceMath.Matrix3x3.Zero.
void AdvanceMath.Matrix3x3.SetColumn | ( | int | columnIndex, |
Vector3D | value | ||
) |
Määrittely tiedoston Matrix3x3.cs rivillä 1397.
Viittaukset AdvanceMath.Matrix3x3.ColumnCount, AdvanceMath.Matrix3x3.Cx, AdvanceMath.Matrix3x3.Cy, AdvanceMath.Matrix3x3.Cz ja AdvanceMath.ThrowHelper.GetThrowIndex().
void AdvanceMath.Matrix3x3.SetRow | ( | int | rowIndex, |
Vector3D | value | ||
) |
Määrittely tiedoston Matrix3x3.cs rivillä 1427.
Viittaukset AdvanceMath.ThrowHelper.GetThrowIndex(), AdvanceMath.Matrix3x3.RowCount, AdvanceMath.Matrix3x3.Rx, AdvanceMath.Matrix3x3.Ry ja AdvanceMath.Matrix3x3.Rz.
Määrittely tiedoston Matrix3x3.cs rivillä 556.
Viittaukset AdvanceMath.Matrix3x3.Subtract().
Määrittely tiedoston Matrix3x3.cs rivillä 576.
Viittaukset AdvanceMath.Matrix3x3.Subtract().
Used to subtract two matrices.
left | |
right |
Määrittely tiedoston Matrix3x3.cs rivillä 522.
Viittaukset AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
Viitattu AdvanceMath.Matrix3x3.operator-() ja AdvanceMath.Matrix3x3.Subtract().
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 562.
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 582.
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 540.
Scalar[] AdvanceMath.Matrix3x3.ToArray | ( | ) |
Copies the elements of the IAdvanceValueType to a new array of Scalar .
Toteuttaa luokan AdvanceMath.IAdvanceValueType.
Määrittely tiedoston Matrix3x3.cs rivillä 1448.
Viittaukset AdvanceMath.Matrix3x3.Count, AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
Matrix4x4 AdvanceMath.Matrix3x3.ToMatrix4x4 | ( | ) |
Määrittely tiedoston Matrix3x3.cs rivillä 1465.
Viittaukset AdvanceMath.Matrix4x4.Identity, AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix4x4.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix4x4.m20, AdvanceMath.Matrix3x3.m21, AdvanceMath.Matrix4x4.m21, AdvanceMath.Matrix3x3.m22 ja AdvanceMath.Matrix4x4.m22.
Matrix4x4 AdvanceMath.Matrix3x3.ToMatrix4x4From2D | ( | ) |
Määrittely tiedoston Matrix3x3.cs rivillä 1457.
Viittaukset AdvanceMath.Matrix4x4.Identity, AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix4x4.m13, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21, AdvanceMath.Matrix3x3.m22, AdvanceMath.Matrix4x4.m30, AdvanceMath.Matrix4x4.m31 ja AdvanceMath.Matrix4x4.m33.
Scalar[,] AdvanceMath.Matrix3x3.ToMatrixArray | ( | ) |
Määrittely tiedoston Matrix3x3.cs rivillä 1444.
Viittaukset AdvanceMath.Matrix3x3.ColumnCount, AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21, AdvanceMath.Matrix3x3.m22 ja AdvanceMath.Matrix3x3.RowCount.
override string AdvanceMath.Matrix3x3.ToString | ( | ) |
Määrittely tiedoston Matrix3x3.cs rivillä 1504.
Viittaukset AdvanceMath.Matrix3x3.FormatString ja AdvanceMath.Matrix3x3.ToStringInternal().
string AdvanceMath.Matrix3x3.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 Matrix3x3.cs rivillä 1500.
Viittaukset AdvanceMath.Matrix3x3.FormatableString ja AdvanceMath.Matrix3x3.ToStringInternal().
|
private |
Määrittely tiedoston Matrix3x3.cs rivillä 1493.
Viittaukset AdvanceMath.Matrix3x3.FormatString, AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
Viitattu AdvanceMath.Matrix3x3.ToString().
Scalar[] AdvanceMath.Matrix3x3.ToTransposedArray | ( | ) |
Määrittely tiedoston Matrix3x3.cs rivillä 1452.
Viittaukset AdvanceMath.Matrix3x3.Count, AdvanceMath.Matrix3x3.m00, AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02, AdvanceMath.Matrix3x3.m10, AdvanceMath.Matrix3x3.m11, AdvanceMath.Matrix3x3.m12, AdvanceMath.Matrix3x3.m20, AdvanceMath.Matrix3x3.m21 ja AdvanceMath.Matrix3x3.m22.
Määrittely tiedoston Matrix3x3.cs rivillä 696.
Viittaukset AdvanceMath.Matrix3x3.Transpose().
Viitattu AdvanceMath.Matrix3x3.Transpose().
Määrittely tiedoston Matrix3x3.cs rivillä 702.
Viittaukset AdvanceMath.Matrix3x3.m01, AdvanceMath.Matrix3x3.m02 ja AdvanceMath.Matrix3x3.m12.
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 1151.
Viittaukset AdvanceMath.Matrix3x3.Zero.
|
static |
The number of columns.
Määrittely tiedoston Matrix3x3.cs rivillä 71.
Viitattu AdvanceMath.Matrix3x3.GetColumn(), AdvanceMath.Matrix3x3.SetColumn() ja AdvanceMath.Matrix3x3.ToMatrixArray().
|
static |
The number of Scalar values in the class.
Määrittely tiedoston Matrix3x3.cs rivillä 75.
Viitattu AdvanceMath.Matrix3x3.Copy(), AdvanceMath.Matrix3x3.CopyTranspose(), AdvanceMath.Matrix3x3.ToArray() ja AdvanceMath.Matrix3x3.ToTransposedArray().
|
staticprivate |
Määrittely tiedoston Matrix3x3.cs rivillä 83.
Viitattu AdvanceMath.Matrix3x3.ToString().
|
staticprivate |
Määrittely tiedoston Matrix3x3.cs rivillä 82.
Viitattu AdvanceMath.Matrix3x3.ToString() ja AdvanceMath.Matrix3x3.ToStringInternal().
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 85.
Viitattu AdvanceMath.Matrix3x3.FromLookAt().
Scalar AdvanceMath.Matrix3x3.m00 |
Määrittely tiedoston Matrix3x3.cs rivillä 1181.
Viitattu AdvanceMath.Matrix3x3.Matrix3x3(), AdvanceMath.Matrix3x3.Add(), AdvanceMath.Matrix3x3.Equals(), AdvanceMath.Matrix3x3.FromRotationX(), AdvanceMath.Matrix3x3.FromRotationY(), AdvanceMath.Matrix3x3.FromRotationZ(), AdvanceMath.Matrix3x3.FromScale(), AdvanceMath.Matrix3x3.FromShear3D(), AdvanceMath.Matrix3x3.FromTranslate2D(), AdvanceMath.Matrix3x3.GetDeterminant(), AdvanceMath.Matrix3x3.GetHashCode(), AdvanceMath.Matrix3x3.Multiply(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix3x3.Negate(), AdvanceMath.Matrix2x2.operator Matrix2x2(), AdvanceMath.Matrix3x3.operator Matrix3x3(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix3x3.operator*(), AdvanceMath.Vector2D.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Matrix3x3.operator+(), AdvanceMath.Matrix3x3.operator-(), AdvanceMath.Matrix3x3.operator==(), AdvanceMath.IO.MathReader.ReadMatrix3x3(), AdvanceMath.Matrix3x3.Subtract(), AdvanceMath.Matrix3x3.ToArray(), AdvanceMath.Quaternion.ToAxis(), AdvanceMath.Matrix3x3.ToMatrix4x4(), AdvanceMath.Matrix3x3.ToMatrix4x4From2D(), AdvanceMath.Matrix3x3.ToMatrixArray(), AdvanceMath.Quaternion.ToRotationMatrix(), AdvanceMath.Matrix3x3.ToStringInternal(), AdvanceMath.Matrix3x3.ToTransposedArray(), AdvanceMath.Vector2D.Transform(), AdvanceMath.Vector3D.Transform(), AdvanceMath.Vector2D.TransformNormal() ja AdvanceMath.IO.MathWriter.Write().
Scalar AdvanceMath.Matrix3x3.m01 |
Määrittely tiedoston Matrix3x3.cs rivillä 1181.
Viitattu AdvanceMath.Matrix3x3.Matrix3x3(), AdvanceMath.Matrix3x3.Add(), AdvanceMath.Matrix3x3.Equals(), AdvanceMath.Matrix3x3.FromRotationX(), AdvanceMath.Matrix3x3.FromRotationY(), AdvanceMath.Matrix3x3.FromRotationZ(), AdvanceMath.Matrix3x3.FromScale(), AdvanceMath.Matrix3x3.FromShear3D(), AdvanceMath.Matrix3x3.FromTranslate2D(), AdvanceMath.Matrix3x3.GetAdjoint(), AdvanceMath.Matrix3x3.GetCofactor(), AdvanceMath.Matrix3x3.GetDeterminant(), AdvanceMath.Matrix3x3.GetHashCode(), AdvanceMath.Matrix3x3.Invert(), AdvanceMath.Matrix3x3.Multiply(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix3x3.Negate(), AdvanceMath.Matrix2x2.operator Matrix2x2(), AdvanceMath.Matrix3x3.operator Matrix3x3(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix3x3.operator*(), AdvanceMath.Vector2D.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Matrix3x3.operator+(), AdvanceMath.Matrix3x3.operator-(), AdvanceMath.Matrix3x3.operator==(), AdvanceMath.IO.MathReader.ReadMatrix3x3(), AdvanceMath.Matrix3x3.Subtract(), AdvanceMath.Matrix3x3.ToArray(), AdvanceMath.Quaternion.ToAxis(), AdvanceMath.Matrix3x3.ToMatrix4x4(), AdvanceMath.Matrix3x3.ToMatrix4x4From2D(), AdvanceMath.Matrix3x3.ToMatrixArray(), AdvanceMath.Quaternion.ToRotationMatrix(), AdvanceMath.Matrix3x3.ToStringInternal(), AdvanceMath.Matrix3x3.ToTransposedArray(), AdvanceMath.Vector2D.Transform(), AdvanceMath.Vector3D.Transform(), AdvanceMath.Vector2D.TransformNormal(), AdvanceMath.Matrix3x3.Transpose() ja AdvanceMath.IO.MathWriter.Write().
Scalar AdvanceMath.Matrix3x3.m02 |
Määrittely tiedoston Matrix3x3.cs rivillä 1181.
Viitattu AdvanceMath.Matrix3x3.Matrix3x3(), AdvanceMath.Matrix3x3.Add(), AdvanceMath.Matrix3x3.Equals(), AdvanceMath.Matrix3x3.FromRotationX(), AdvanceMath.Matrix3x3.FromRotationY(), AdvanceMath.Matrix3x3.FromRotationZ(), AdvanceMath.Matrix3x3.FromScale(), AdvanceMath.Matrix3x3.FromShear3D(), AdvanceMath.Matrix3x3.FromTranslate2D(), AdvanceMath.Matrix3x3.GetAdjoint(), AdvanceMath.Matrix3x3.GetCofactor(), AdvanceMath.Matrix3x3.GetDeterminant(), AdvanceMath.Matrix3x3.GetHashCode(), AdvanceMath.Matrix3x3.Invert(), AdvanceMath.Matrix3x3.Multiply(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix3x3.Negate(), AdvanceMath.Matrix3x3.operator Matrix3x3(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix3x3.operator*(), AdvanceMath.Vector2D.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Matrix3x3.operator+(), AdvanceMath.Matrix3x3.operator-(), AdvanceMath.Matrix3x3.operator==(), AdvanceMath.IO.MathReader.ReadMatrix3x3(), AdvanceMath.Matrix3x3.Subtract(), AdvanceMath.Matrix3x3.ToArray(), AdvanceMath.Quaternion.ToAxis(), AdvanceMath.Matrix3x3.ToMatrix4x4(), AdvanceMath.Matrix3x3.ToMatrix4x4From2D(), AdvanceMath.Matrix3x3.ToMatrixArray(), AdvanceMath.Quaternion.ToRotationMatrix(), AdvanceMath.Matrix3x3.ToStringInternal(), AdvanceMath.Matrix3x3.ToTransposedArray(), AdvanceMath.Vector2D.Transform(), AdvanceMath.Vector3D.Transform(), AdvanceMath.Matrix3x3.Transpose() ja AdvanceMath.IO.MathWriter.Write().
Scalar AdvanceMath.Matrix3x3.m10 |
Määrittely tiedoston Matrix3x3.cs rivillä 1183.
Viitattu AdvanceMath.Matrix3x3.Matrix3x3(), AdvanceMath.Matrix3x3.Add(), AdvanceMath.Matrix3x3.Equals(), AdvanceMath.Matrix3x3.FromRotationX(), AdvanceMath.Matrix3x3.FromRotationY(), AdvanceMath.Matrix3x3.FromRotationZ(), AdvanceMath.Matrix3x3.FromScale(), AdvanceMath.Matrix3x3.FromShear3D(), AdvanceMath.Matrix3x3.FromTranslate2D(), AdvanceMath.Matrix3x3.GetDeterminant(), AdvanceMath.Matrix3x3.GetHashCode(), AdvanceMath.Matrix3x3.Multiply(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix3x3.Negate(), AdvanceMath.Matrix2x2.operator Matrix2x2(), AdvanceMath.Matrix3x3.operator Matrix3x3(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix3x3.operator*(), AdvanceMath.Vector2D.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Matrix3x3.operator+(), AdvanceMath.Matrix3x3.operator-(), AdvanceMath.Matrix3x3.operator==(), AdvanceMath.IO.MathReader.ReadMatrix3x3(), AdvanceMath.Matrix3x3.Subtract(), AdvanceMath.Matrix3x3.ToArray(), AdvanceMath.Quaternion.ToAxis(), AdvanceMath.Matrix3x3.ToMatrix4x4(), AdvanceMath.Matrix3x3.ToMatrix4x4From2D(), AdvanceMath.Matrix3x3.ToMatrixArray(), AdvanceMath.Quaternion.ToRotationMatrix(), AdvanceMath.Matrix3x3.ToStringInternal(), AdvanceMath.Matrix3x3.ToTransposedArray(), AdvanceMath.Vector2D.Transform(), AdvanceMath.Vector3D.Transform(), AdvanceMath.Vector2D.TransformNormal() ja AdvanceMath.IO.MathWriter.Write().
Scalar AdvanceMath.Matrix3x3.m11 |
Määrittely tiedoston Matrix3x3.cs rivillä 1183.
Viitattu AdvanceMath.Matrix3x3.Matrix3x3(), AdvanceMath.Matrix3x3.Add(), AdvanceMath.Matrix3x3.Equals(), AdvanceMath.Matrix3x3.FromRotationX(), AdvanceMath.Matrix3x3.FromRotationY(), AdvanceMath.Matrix3x3.FromRotationZ(), AdvanceMath.Matrix3x3.FromScale(), AdvanceMath.Matrix3x3.FromShear3D(), AdvanceMath.Matrix3x3.FromTranslate2D(), AdvanceMath.Matrix3x3.GetAdjoint(), AdvanceMath.Matrix3x3.GetCofactor(), AdvanceMath.Matrix3x3.GetDeterminant(), AdvanceMath.Matrix3x3.GetHashCode(), AdvanceMath.Matrix3x3.Invert(), AdvanceMath.Matrix3x3.Multiply(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix3x3.Negate(), AdvanceMath.Matrix2x2.operator Matrix2x2(), AdvanceMath.Matrix3x3.operator Matrix3x3(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix3x3.operator*(), AdvanceMath.Vector2D.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Matrix3x3.operator+(), AdvanceMath.Matrix3x3.operator-(), AdvanceMath.Matrix3x3.operator==(), AdvanceMath.IO.MathReader.ReadMatrix3x3(), AdvanceMath.Matrix3x3.Subtract(), AdvanceMath.Matrix3x3.ToArray(), AdvanceMath.Quaternion.ToAxis(), AdvanceMath.Matrix3x3.ToMatrix4x4(), AdvanceMath.Matrix3x3.ToMatrix4x4From2D(), AdvanceMath.Matrix3x3.ToMatrixArray(), AdvanceMath.Quaternion.ToRotationMatrix(), AdvanceMath.Matrix3x3.ToStringInternal(), AdvanceMath.Matrix3x3.ToTransposedArray(), AdvanceMath.Vector2D.Transform(), AdvanceMath.Vector3D.Transform(), AdvanceMath.Vector2D.TransformNormal() ja AdvanceMath.IO.MathWriter.Write().
Scalar AdvanceMath.Matrix3x3.m12 |
Määrittely tiedoston Matrix3x3.cs rivillä 1183.
Viitattu AdvanceMath.Matrix3x3.Matrix3x3(), AdvanceMath.Matrix3x3.Add(), AdvanceMath.Matrix3x3.Equals(), AdvanceMath.Matrix3x3.FromRotationX(), AdvanceMath.Matrix3x3.FromRotationY(), AdvanceMath.Matrix3x3.FromRotationZ(), AdvanceMath.Matrix3x3.FromScale(), AdvanceMath.Matrix3x3.FromShear3D(), AdvanceMath.Matrix3x3.FromTranslate2D(), AdvanceMath.Matrix3x3.GetAdjoint(), AdvanceMath.Matrix3x3.GetCofactor(), AdvanceMath.Matrix3x3.GetDeterminant(), AdvanceMath.Matrix3x3.GetHashCode(), AdvanceMath.Matrix3x3.Invert(), AdvanceMath.Matrix3x3.Multiply(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix3x3.Negate(), AdvanceMath.Matrix3x3.operator Matrix3x3(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix3x3.operator*(), AdvanceMath.Vector2D.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Matrix3x3.operator+(), AdvanceMath.Matrix3x3.operator-(), AdvanceMath.Matrix3x3.operator==(), AdvanceMath.IO.MathReader.ReadMatrix3x3(), AdvanceMath.Matrix3x3.Subtract(), AdvanceMath.Matrix3x3.ToArray(), AdvanceMath.Quaternion.ToAxis(), AdvanceMath.Matrix3x3.ToMatrix4x4(), AdvanceMath.Matrix3x3.ToMatrix4x4From2D(), AdvanceMath.Matrix3x3.ToMatrixArray(), AdvanceMath.Quaternion.ToRotationMatrix(), AdvanceMath.Matrix3x3.ToStringInternal(), AdvanceMath.Matrix3x3.ToTransposedArray(), AdvanceMath.Vector2D.Transform(), AdvanceMath.Vector3D.Transform(), AdvanceMath.Matrix3x3.Transpose() ja AdvanceMath.IO.MathWriter.Write().
Scalar AdvanceMath.Matrix3x3.m20 |
Määrittely tiedoston Matrix3x3.cs rivillä 1185.
Viitattu AdvanceMath.Matrix3x3.Matrix3x3(), AdvanceMath.Matrix3x3.Add(), AdvanceMath.Matrix3x3.Equals(), AdvanceMath.Matrix3x3.FromRotationX(), AdvanceMath.Matrix3x3.FromRotationY(), AdvanceMath.Matrix3x3.FromRotationZ(), AdvanceMath.Matrix3x3.FromScale(), AdvanceMath.Matrix3x3.FromShear3D(), AdvanceMath.Matrix3x3.FromTranslate2D(), AdvanceMath.Matrix3x3.GetDeterminant(), AdvanceMath.Matrix3x3.GetHashCode(), AdvanceMath.Matrix3x3.Multiply(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix3x3.Negate(), AdvanceMath.Matrix3x3.operator Matrix3x3(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix3x3.operator*(), AdvanceMath.Vector2D.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Matrix3x3.operator+(), AdvanceMath.Matrix3x3.operator-(), AdvanceMath.Matrix3x3.operator==(), AdvanceMath.IO.MathReader.ReadMatrix3x3(), AdvanceMath.Matrix3x3.Subtract(), AdvanceMath.Matrix3x3.ToArray(), AdvanceMath.Quaternion.ToAxis(), AdvanceMath.Matrix3x3.ToMatrix4x4(), AdvanceMath.Matrix3x3.ToMatrix4x4From2D(), AdvanceMath.Matrix3x3.ToMatrixArray(), AdvanceMath.Quaternion.ToRotationMatrix(), AdvanceMath.Matrix3x3.ToStringInternal(), AdvanceMath.Matrix3x3.ToTransposedArray(), AdvanceMath.Vector2D.Transform(), AdvanceMath.Vector3D.Transform() ja AdvanceMath.IO.MathWriter.Write().
Scalar AdvanceMath.Matrix3x3.m21 |
Määrittely tiedoston Matrix3x3.cs rivillä 1185.
Viitattu AdvanceMath.Matrix3x3.Matrix3x3(), AdvanceMath.Matrix3x3.Add(), AdvanceMath.Matrix3x3.Equals(), AdvanceMath.Matrix3x3.FromRotationX(), AdvanceMath.Matrix3x3.FromRotationY(), AdvanceMath.Matrix3x3.FromRotationZ(), AdvanceMath.Matrix3x3.FromScale(), AdvanceMath.Matrix3x3.FromShear3D(), AdvanceMath.Matrix3x3.FromTranslate2D(), AdvanceMath.Matrix3x3.GetDeterminant(), AdvanceMath.Matrix3x3.GetHashCode(), AdvanceMath.Matrix3x3.Multiply(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix3x3.Negate(), AdvanceMath.Matrix3x3.operator Matrix3x3(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix3x3.operator*(), AdvanceMath.Vector2D.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Matrix3x3.operator+(), AdvanceMath.Matrix3x3.operator-(), AdvanceMath.Matrix3x3.operator==(), AdvanceMath.IO.MathReader.ReadMatrix3x3(), AdvanceMath.Matrix3x3.Subtract(), AdvanceMath.Matrix3x3.ToArray(), AdvanceMath.Quaternion.ToAxis(), AdvanceMath.Matrix3x3.ToMatrix4x4(), AdvanceMath.Matrix3x3.ToMatrix4x4From2D(), AdvanceMath.Matrix3x3.ToMatrixArray(), AdvanceMath.Quaternion.ToRotationMatrix(), AdvanceMath.Matrix3x3.ToStringInternal(), AdvanceMath.Matrix3x3.ToTransposedArray(), AdvanceMath.Vector2D.Transform(), AdvanceMath.Vector3D.Transform() ja AdvanceMath.IO.MathWriter.Write().
Scalar AdvanceMath.Matrix3x3.m22 |
Määrittely tiedoston Matrix3x3.cs rivillä 1185.
Viitattu AdvanceMath.Matrix3x3.Matrix3x3(), AdvanceMath.Matrix3x3.Add(), AdvanceMath.Matrix3x3.Equals(), AdvanceMath.Matrix3x3.FromRotationX(), AdvanceMath.Matrix3x3.FromRotationY(), AdvanceMath.Matrix3x3.FromRotationZ(), AdvanceMath.Matrix3x3.FromScale(), AdvanceMath.Matrix3x3.FromShear3D(), AdvanceMath.Matrix3x3.FromTranslate2D(), AdvanceMath.Matrix3x3.GetDeterminant(), AdvanceMath.Matrix3x3.GetHashCode(), AdvanceMath.Matrix3x3.Multiply(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix3x3.Negate(), AdvanceMath.Matrix3x3.operator Matrix3x3(), AdvanceMath.Matrix4x4.operator Matrix4x4(), AdvanceMath.Matrix3x3.operator*(), AdvanceMath.Vector2D.operator*(), AdvanceMath.Vector3D.operator*(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Matrix3x3.operator+(), AdvanceMath.Matrix3x3.operator-(), AdvanceMath.Matrix3x3.operator==(), AdvanceMath.IO.MathReader.ReadMatrix3x3(), AdvanceMath.Matrix3x3.Subtract(), AdvanceMath.Matrix3x3.ToArray(), AdvanceMath.Quaternion.ToAxis(), AdvanceMath.Matrix3x3.ToMatrix4x4(), AdvanceMath.Matrix3x3.ToMatrix4x4From2D(), AdvanceMath.Matrix3x3.ToMatrixArray(), AdvanceMath.Quaternion.ToRotationMatrix(), AdvanceMath.Matrix3x3.ToStringInternal(), AdvanceMath.Matrix3x3.ToTransposedArray(), AdvanceMath.Vector2D.Transform(), AdvanceMath.Vector3D.Transform() ja AdvanceMath.IO.MathWriter.Write().
|
static |
The number of rows.
Määrittely tiedoston Matrix3x3.cs rivillä 67.
Viitattu AdvanceMath.Matrix3x3.GetRow(), AdvanceMath.Matrix3x3.SetRow() ja AdvanceMath.Matrix3x3.ToMatrixArray().
The Size of the class in bytes;
Määrittely tiedoston Matrix3x3.cs rivillä 79.
|
static |
Määrittely tiedoston Matrix3x3.cs rivillä 89.
Viitattu AdvanceMath.Matrix3x3.Parse() ja AdvanceMath.Matrix3x3.TryParse().
|
get |
Määrittely tiedoston Matrix3x3.cs rivillä 1350.
|
get |
Määrittely tiedoston Matrix3x3.cs rivillä 1359.
|
get |
Määrittely tiedoston Matrix3x3.cs rivillä 1380.
|
get |
Määrittely tiedoston Matrix3x3.cs rivillä 1378.
|
getset |
Määrittely tiedoston Matrix3x3.cs rivillä 1286.
Viitattu AdvanceMath.Matrix3x3.GetColumn() ja AdvanceMath.Matrix3x3.SetColumn().
|
getset |
Määrittely tiedoston Matrix3x3.cs rivillä 1300.
Viitattu AdvanceMath.Matrix3x3.GetColumn() ja AdvanceMath.Matrix3x3.SetColumn().
|
getset |
Määrittely tiedoston Matrix3x3.cs rivillä 1314.
Viitattu AdvanceMath.Matrix3x3.GetColumn() ja AdvanceMath.Matrix3x3.SetColumn().
|
get |
Määrittely tiedoston Matrix3x3.cs rivillä 1328.
|
get |
Määrittely tiedoston Matrix3x3.cs rivillä 1368.
Viitattu AdvanceMath.Matrix3x3.FromRotationAxis().
|
get |
Määrittely tiedoston Matrix3x3.cs rivillä 1379.
|
getset |
Määrittely tiedoston Matrix3x3.cs rivillä 1226.
Viitattu AdvanceMath.Matrix3x3.FromLookAt(), AdvanceMath.Matrix3x3.GetDeterminant(), AdvanceMath.Matrix3x3.GetRow() ja AdvanceMath.Matrix3x3.SetRow().
|
getset |
Määrittely tiedoston Matrix3x3.cs rivillä 1247.
Viitattu AdvanceMath.Matrix3x3.FromLookAt(), AdvanceMath.Matrix3x3.GetDeterminant(), AdvanceMath.Matrix3x3.GetRow() ja AdvanceMath.Matrix3x3.SetRow().
|
getset |
Määrittely tiedoston Matrix3x3.cs rivillä 1268.
Viitattu AdvanceMath.Matrix3x3.FromLookAt(), AdvanceMath.Matrix3x3.GetDeterminant(), AdvanceMath.Matrix3x3.GetRow() ja AdvanceMath.Matrix3x3.SetRow().
|
get |
Swap the rows of the matrix with the columns.
Määrittely tiedoston Matrix3x3.cs rivillä 1341.