Jypeli 10
The simple game programming library
|
A 2x3 matrix which can represent rotations around axes. Lisää...
Julkiset jäsenfunktiot | |
Matrix2x3 (Scalar m00, Scalar m01, Scalar m02, Scalar m10, Scalar m11, Scalar m12) | |
Creates a new Matrix3 with all the specified parameters. Lisää... | |
Matrix2x3 (Scalar[] values) | |
Matrix2x3 (Scalar[] values, int index) | |
Matrix2x3 (Vector3D xAxis, Vector3D yAxis) | |
Create a new Matrix from 2 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 (Matrix2x3 other) |
override bool | Equals (object obj) |
Vector2D | GetColumn (int columnIndex) |
override int | GetHashCode () |
Vector3D | GetRow (int rowIndex) |
void | SetColumn (int columnIndex, Vector2D 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< Matrix2x3, Vector2D, 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 Matrix2x3 | Add (Matrix2x2 left, Matrix2x3 right) |
static Matrix2x3 | Add (Matrix2x3 left, Matrix2x2 right) |
static Matrix2x3 | Add (Matrix2x3 left, Matrix2x3 right) |
Used to add two matrices together. Lisää... | |
static void | Add (ref Matrix2x2 left, ref Matrix2x3 right, out Matrix2x3 result) |
static void | Add (ref Matrix2x3 left, ref Matrix2x2 right, out Matrix2x3 result) |
static void | Add (ref Matrix2x3 left, ref Matrix2x3 right, out Matrix2x3 result) |
static void | Copy (ref Matrix2x2 source, ref Matrix2x3 dest) |
static void | Copy (ref Matrix2x3 matrix, Scalar[] destArray) |
static void | Copy (ref Matrix2x3 matrix, Scalar[] destArray, int index) |
static void | Copy (ref Matrix4x4 source, out Matrix2x3 dest) |
static void | Copy (Scalar[] sourceArray, int index, out Matrix2x3 result) |
static void | Copy (Scalar[] sourceArray, out Matrix2x3 result) |
static void | Copy2DFromOpenGlMatrix (Scalar[] destArray, out Matrix2x3 result) |
static void | Copy2DToOpenGlMatrix (ref Matrix2x3 source, Scalar[] destArray) |
static bool | Equals (Matrix2x3 left, Matrix2x3 right) |
static bool | Equals (ref Matrix2x3 left, ref Matrix2x3 right) |
static Matrix2x3 | FromArray (Scalar[] array) |
static void | FromRotationZ (ref Scalar radianAngle, out Matrix2x3 result) |
static Matrix2x3 | FromRotationZ (Scalar radianAngle) |
static void | FromScale (ref Vector2D scale, out Matrix2x3 result) |
static Matrix2x3 | FromScale (Vector2D scale) |
static void | FromTransformation (ref Scalar rotation, ref Vector2D translation, out Matrix2x3 result) |
static Matrix2x3 | FromTransformation (Scalar rotation, Vector2D translation) |
static void | FromTranslate2D (ref Vector2D value, out Matrix2x3 result) |
static Matrix2x3 | FromTranslate2D (Vector2D value) |
static Matrix2x3 | GetAdjoint (Matrix2x3 source) |
static void | GetAdjoint (ref Matrix2x3 source, out Matrix2x3 result) |
static Matrix2x3 | GetCofactor (Matrix2x3 source) |
static void | GetCofactor (ref Matrix2x3 source, out Matrix2x3 result) |
static Scalar | GetDeterminant (Matrix2x3 source) |
static void | GetDeterminant (ref Matrix2x3 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 Matrix2x3 | Invert (Matrix2x3 source) |
static void | Invert (ref Matrix2x3 source, out Matrix2x3 result) |
static Matrix2x3 | Lerp (Matrix2x3 left, Matrix2x3 right, Scalar amount) |
static void | Lerp (ref Matrix2x3 left, ref Matrix2x3 right, ref Scalar amount, out Matrix2x3 result) |
static Matrix2x3 | Multiply (Matrix2x2 left, Matrix2x3 right) |
Used to multiply (concatenate) a Matrix2x3 and a Matrix2x2. Lisää... | |
static Matrix2x3 | Multiply (Matrix2x3 left, Matrix2x2 right) |
Used to multiply (concatenate) a Matrix2x3 and a Matrix2x2. Lisää... | |
static Matrix2x3 | Multiply (Matrix2x3 left, Matrix2x3 right) |
Used to multiply (concatenate) two Matrix4x4s. Lisää... | |
static Matrix2x3 | Multiply (Matrix2x3 left, Scalar scalar) |
Used to multiply a Matrix2x3 object by a scalar value.. Lisää... | |
static void | Multiply (ref Matrix2x2 left, ref Matrix2x3 right, out Matrix2x3 result) |
static void | Multiply (ref Matrix2x3 left, ref Matrix2x2 right, out Matrix2x3 result) |
static void | Multiply (ref Matrix2x3 left, ref Matrix2x3 right, out Matrix2x3 result) |
static void | Multiply (ref Matrix2x3 left, ref Scalar scalar, out Matrix2x3 result) |
static Matrix2x3 | Negate (Matrix2x3 source) |
Negates a Matrix2x3. Lisää... | |
static void | Negate (ref Matrix2x3 source) |
static void | Negate (ref Matrix2x3 source, out Matrix2x3 result) |
static | operator Matrix2x3 (Matrix2x2 source) |
static | operator Matrix2x3 (Matrix4x4 source) |
static bool | operator!= (Matrix2x3 left, Matrix2x3 right) |
static Matrix2x3 | operator* (Matrix2x2 left, Matrix2x3 right) |
Multiply (concatenate) a Matrix2x3 and a Matrix2x2 Lisää... | |
static Matrix2x3 | operator* (Matrix2x3 left, Matrix2x2 right) |
Multiply (concatenate) a Matrix2x3 and a Matrix2x2 Lisää... | |
static Matrix2x3 | operator* (Matrix2x3 left, Matrix2x3 right) |
Multiply (concatenate) two Matrix3 instances together. Lisää... | |
static Matrix2x3 | operator* (Matrix2x3 matrix, Scalar scalar) |
Multiplies all the items in the Matrix3 by a scalar value. Lisää... | |
static Matrix2x3 | operator* (Scalar scalar, Matrix2x3 matrix) |
Multiplies all the items in the Matrix3 by a scalar value. Lisää... | |
static Matrix2x3 | operator+ (Matrix2x2 left, Matrix2x3 right) |
static Matrix2x3 | operator+ (Matrix2x3 left, Matrix2x2 right) |
static Matrix2x3 | operator+ (Matrix2x3 left, Matrix2x3 right) |
Used to add two matrices together. Lisää... | |
static Matrix2x3 | operator- (Matrix2x2 left, Matrix2x3 right) |
static Matrix2x3 | operator- (Matrix2x3 left, Matrix2x2 right) |
static Matrix2x3 | operator- (Matrix2x3 left, Matrix2x3 right) |
Used to subtract two matrices. Lisää... | |
static Matrix2x3 | operator- (Matrix2x3 matrix) |
Negates all the items in the Matrix. Lisää... | |
static bool | operator== (Matrix2x3 left, Matrix2x3 right) |
Test two matrices for (value) equality Lisää... | |
static Matrix2x3 | Parse (string s) |
static Matrix2x3 | Subtract (Matrix2x2 left, Matrix2x3 right) |
static Matrix2x3 | Subtract (Matrix2x3 left, Matrix2x2 right) |
static Matrix2x3 | Subtract (Matrix2x3 left, Matrix2x3 right) |
Used to subtract two matrices. Lisää... | |
static void | Subtract (ref Matrix2x2 left, ref Matrix2x3 right, out Matrix2x3 result) |
static void | Subtract (ref Matrix2x3 left, ref Matrix2x2 right, out Matrix2x3 result) |
static void | Subtract (ref Matrix2x3 left, ref Matrix2x3 right, out Matrix2x3 result) |
static Matrix2x3 | Transpose (Matrix2x3 source) |
static void | Transpose (ref Matrix2x3 source, out Matrix2x3 result) |
static bool | TryParse (string s, out Matrix2x3 result) |
Julkiset attribuutit | |
Scalar | m00 |
Scalar | m01 |
Scalar | m02 |
Scalar | m10 |
Scalar | m11 |
Scalar | m12 |
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 Matrix2x3 | Identity |
const int | RowCount = 2 |
The number of rows. Lisää... | |
const int | Size = sizeof(Scalar) * Count |
The Size of the class in bytes; Lisää... | |
static readonly Matrix2x3 | Zero |
Ominaisuudet | |
Matrix2x3 | Adjoint [get] |
Matrix2x3 | Cofactor [get] |
int IMatrix. | ColumnCount [get] |
int IAdvanceValueType. | Count [get] |
Vector2D | Cx [getset] |
Vector2D | Cy [getset] |
Vector2D | Cz [getset] |
Scalar | Determinant [get] |
Matrix2x3 | Inverted [get] |
int IMatrix. | RowCount [get] |
Vector3D | Rx [getset] |
Vector3D | Ry [getset] |
Matrix2x3 | Transposed [get] |
Swap the rows of the matrix with the columns. Lisää... | |
Ominaisuudet inherited from AdvanceMath.IMatrix< Matrix2x3, Vector2D, 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 2x3 matrix which can represent rotations around axes.
Määrittely tiedoston Matrix2x3.cs rivillä 61.
AdvanceMath.Matrix2x3.Matrix2x3 | ( | Scalar | m00, |
Scalar | m01, | ||
Scalar | m02, | ||
Scalar | m10, | ||
Scalar | m11, | ||
Scalar | m12 | ||
) |
Creates a new Matrix3 with all the specified parameters.
Määrittely tiedoston Matrix2x3.cs rivillä 867.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
Create a new Matrix from 2 Vertex3 objects.
xAxis | |
yAxis |
Määrittely tiedoston Matrix2x3.cs rivillä 880.
Viittaukset AdvanceMath.Vector3D.X, AdvanceMath.Vector3D.Y ja AdvanceMath.Vector3D.Z.
AdvanceMath.Matrix2x3.Matrix2x3 | ( | Scalar[] | values | ) |
Määrittely tiedoston Matrix2x3.cs rivillä 885.
AdvanceMath.Matrix2x3.Matrix2x3 | ( | Scalar[] | values, |
int | index | ||
) |
Määrittely tiedoston Matrix2x3.cs rivillä 886.
Viittaukset AdvanceMath.Matrix2x3.Copy().
Määrittely tiedoston Matrix2x3.cs rivillä 390.
Viittaukset AdvanceMath.Matrix2x3.Add().
Määrittely tiedoston Matrix2x3.cs rivillä 407.
Viittaukset AdvanceMath.Matrix2x3.Add().
Used to add two matrices together.
left | |
right |
Määrittely tiedoston Matrix2x3.cs rivillä 362.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
Viitattu AdvanceMath.Matrix2x3.Add() ja AdvanceMath.Matrix2x3.operator+().
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 396.
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 413.
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 377.
Määrittely tiedoston Matrix2x3.cs rivillä 141.
Määrittely tiedoston Matrix2x3.cs rivillä 94.
Viittaukset AdvanceMath.Matrix2x3.Copy().
Viitattu AdvanceMath.Matrix2x3.Matrix2x3(), AdvanceMath.Matrix2x3.Copy(), AdvanceMath.Matrix2x3.CopyFrom(), AdvanceMath.Matrix2x3.CopyTo() ja AdvanceMath.Matrix2x3.FromArray().
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 98.
Viittaukset AdvanceMath.ThrowHelper.CheckCopy() ja AdvanceMath.Matrix2x3.Count.
Määrittely tiedoston Matrix2x3.cs rivillä 130.
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 115.
Viittaukset AdvanceMath.ThrowHelper.CheckCopy() ja AdvanceMath.Matrix2x3.Count.
Määrittely tiedoston Matrix2x3.cs rivillä 111.
Viittaukset AdvanceMath.Matrix2x3.Copy().
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 168.
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 152.
void AdvanceMath.Matrix2x3.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 Matrix2x3.cs rivillä 1123.
Viittaukset AdvanceMath.Matrix2x3.Copy().
void AdvanceMath.Matrix2x3.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 Matrix2x3.cs rivillä 1114.
Viittaukset AdvanceMath.Matrix2x3.Copy().
void AdvanceMath.Matrix2x3.CopyTransposedFrom | ( | Scalar[] | array, |
int | index | ||
) |
Määrittely tiedoston Matrix2x3.cs rivillä 1127.
void AdvanceMath.Matrix2x3.CopyTransposedTo | ( | Scalar[] | array, |
int | index | ||
) |
Määrittely tiedoston Matrix2x3.cs rivillä 1118.
Määrittely tiedoston Matrix2x3.cs rivillä 838.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
Viitattu AdvanceMath.Matrix2x3.Equals().
bool AdvanceMath.Matrix2x3.Equals | ( | Matrix2x3 | other | ) |
Määrittely tiedoston Matrix2x3.cs rivillä 1163.
Viittaukset AdvanceMath.Matrix2x3.Equals().
override bool AdvanceMath.Matrix2x3.Equals | ( | object | obj | ) |
Määrittely tiedoston Matrix2x3.cs rivillä 1157.
Viittaukset AdvanceMath.Matrix2x3.Equals().
Määrittely tiedoston Matrix2x3.cs rivillä 844.
Määrittely tiedoston Matrix2x3.cs rivillä 698.
Viittaukset AdvanceMath.Matrix2x3.Copy().
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 727.
Viittaukset AdvanceMath.MathHelper.Cos() ja AdvanceMath.MathHelper.Sin().
Määrittely tiedoston Matrix2x3.cs rivillä 711.
Viittaukset AdvanceMath.MathHelper.Cos(), AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11, AdvanceMath.Matrix2x3.m12 ja AdvanceMath.MathHelper.Sin().
Määrittely tiedoston Matrix2x3.cs rivillä 758.
Määrittely tiedoston Matrix2x3.cs rivillä 744.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11, AdvanceMath.Matrix2x3.m12, AdvanceMath.Vector2D.X ja AdvanceMath.Vector2D.Y.
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 687.
Viittaukset AdvanceMath.MathHelper.Cos() ja AdvanceMath.MathHelper.Sin().
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 681.
Viittaukset AdvanceMath.Matrix2x3.FromTransformation().
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 785.
Määrittely tiedoston Matrix2x3.cs rivillä 770.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11, AdvanceMath.Matrix2x3.m12, AdvanceMath.Vector2D.X ja AdvanceMath.Vector2D.Y.
Määrittely tiedoston Matrix2x3.cs rivillä 632.
Viittaukset AdvanceMath.Matrix2x3.GetAdjoint().
Viitattu AdvanceMath.Matrix2x3.GetAdjoint().
Määrittely tiedoston Matrix2x3.cs rivillä 638.
Viittaukset AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
Määrittely tiedoston Matrix2x3.cs rivillä 656.
Viittaukset AdvanceMath.Matrix2x3.GetCofactor().
Viitattu AdvanceMath.Matrix2x3.GetCofactor().
Määrittely tiedoston Matrix2x3.cs rivillä 662.
Viittaukset AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
Vector2D AdvanceMath.Matrix2x3.GetColumn | ( | int | columnIndex | ) |
Määrittely tiedoston Matrix2x3.cs rivillä 1031.
Viittaukset AdvanceMath.Matrix2x3.ColumnCount, AdvanceMath.Matrix2x3.Cx, AdvanceMath.Matrix2x3.Cy, AdvanceMath.Matrix2x3.Cz ja AdvanceMath.ThrowHelper.GetThrowIndex().
Määrittely tiedoston Matrix2x3.cs rivillä 591.
Viittaukset AdvanceMath.Matrix2x3.GetDeterminant().
Viitattu AdvanceMath.Matrix2x3.GetDeterminant().
Määrittely tiedoston Matrix2x3.cs rivillä 597.
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 796.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
Määrittely tiedoston Matrix2x3.cs rivillä 809.
Viittaukset AdvanceMath.Matrix2x3.Rx, AdvanceMath.Matrix2x3.Ry, AdvanceMath.Vector3D.X, AdvanceMath.Vector3D.Y ja AdvanceMath.Vector3D.Z.
override int AdvanceMath.Matrix2x3.GetHashCode | ( | ) |
Määrittely tiedoston Matrix2x3.cs rivillä 1150.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
Vector3D AdvanceMath.Matrix2x3.GetRow | ( | int | rowIndex | ) |
Määrittely tiedoston Matrix2x3.cs rivillä 1060.
Viittaukset AdvanceMath.ThrowHelper.GetThrowIndex(), AdvanceMath.Matrix2x3.RowCount, AdvanceMath.Matrix2x3.Rx ja AdvanceMath.Matrix2x3.Ry.
Määrittely tiedoston Matrix2x3.cs rivillä 555.
Viittaukset AdvanceMath.Matrix2x3.Invert().
Viitattu AdvanceMath.Matrix2x3.Invert().
Määrittely tiedoston Matrix2x3.cs rivillä 561.
Viittaukset AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 180.
Viittaukset AdvanceMath.Matrix2x3.Lerp().
Viitattu AdvanceMath.Matrix2x3.Lerp().
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 186.
Used to multiply (concatenate) a Matrix2x3 and a Matrix2x2.
left | |
right |
Määrittely tiedoston Matrix2x3.cs rivillä 318.
Viittaukset AdvanceMath.Matrix2x2.m00, AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x2.m01, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x2.m10, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x2.m11, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
Used to multiply (concatenate) a Matrix2x3 and a Matrix2x2.
left | |
right |
Määrittely tiedoston Matrix2x3.cs rivillä 279.
Viittaukset AdvanceMath.Matrix2x2.m00, AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x2.m01, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x2.m10, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x2.m11, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
Used to multiply (concatenate) two Matrix4x4s.
left | |
right |
Määrittely tiedoston Matrix2x3.cs rivillä 205.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
Used to multiply a Matrix2x3 object by a scalar value..
left | |
scalar |
Määrittely tiedoston Matrix2x3.cs rivillä 245.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 333.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 293.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m10 ja AdvanceMath.Matrix2x3.m11.
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 220.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 260.
Negates a Matrix2x3.
Määrittely tiedoston Matrix2x3.cs rivillä 523.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
Viitattu AdvanceMath.Matrix2x3.Negate().
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 539.
Viittaukset AdvanceMath.Matrix2x3.Negate().
Määrittely tiedoston Matrix2x3.cs rivillä 543.
Määrittely tiedoston Matrix2x3.cs rivillä 1459.
Viittaukset AdvanceMath.Matrix2x2.m00, AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x2.m01, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x2.m10, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x2.m11, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
Määrittely tiedoston Matrix2x3.cs rivillä 1444.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix2x3.m11, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix2x3.m12 ja AdvanceMath.Matrix4x4.m12.
Määrittely tiedoston Matrix2x3.cs rivillä 1438.
Multiply (concatenate) a Matrix2x3 and a Matrix2x2
left | |
right |
Määrittely tiedoston Matrix2x3.cs rivillä 1267.
Viittaukset AdvanceMath.Matrix2x2.m00, AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x2.m01, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x2.m10, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x2.m11, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
Multiply (concatenate) a Matrix2x3 and a Matrix2x2
left | |
right |
Määrittely tiedoston Matrix2x3.cs rivillä 1288.
Viittaukset AdvanceMath.Matrix2x2.m00, AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x2.m01, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x2.m10, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x2.m11, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
Multiply (concatenate) two Matrix3 instances together.
left | |
right |
Määrittely tiedoston Matrix2x3.cs rivillä 1246.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
Multiplies all the items in the Matrix3 by a scalar value.
matrix | |
scalar |
Määrittely tiedoston Matrix2x3.cs rivillä 1310.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
Multiplies all the items in the Matrix3 by a scalar value.
matrix | |
scalar |
Määrittely tiedoston Matrix2x3.cs rivillä 1329.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
Määrittely tiedoston Matrix2x3.cs rivillä 1363.
Viittaukset AdvanceMath.Matrix2x3.Add().
Määrittely tiedoston Matrix2x3.cs rivillä 1369.
Viittaukset AdvanceMath.Matrix2x3.Add().
Used to add two matrices together.
left | |
right |
Määrittely tiedoston Matrix2x3.cs rivillä 1348.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
Määrittely tiedoston Matrix2x3.cs rivillä 1396.
Viittaukset AdvanceMath.Matrix2x3.Subtract().
Määrittely tiedoston Matrix2x3.cs rivillä 1402.
Viittaukset AdvanceMath.Matrix2x3.Subtract().
Used to subtract two matrices.
left | |
right |
Määrittely tiedoston Matrix2x3.cs rivillä 1381.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
Negates all the items in the Matrix.
matrix |
Määrittely tiedoston Matrix2x3.cs rivillä 1413.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
Test two matrices for (value) equality
left | |
right |
Määrittely tiedoston Matrix2x3.cs rivillä 1432.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 823.
Viittaukset AdvanceMath.Matrix2x3.Zero.
void AdvanceMath.Matrix2x3.SetColumn | ( | int | columnIndex, |
Vector2D | value | ||
) |
Määrittely tiedoston Matrix2x3.cs rivillä 1044.
Viittaukset AdvanceMath.Matrix2x3.ColumnCount, AdvanceMath.Matrix2x3.Cx, AdvanceMath.Matrix2x3.Cy, AdvanceMath.Matrix2x3.Cz ja AdvanceMath.ThrowHelper.GetThrowIndex().
void AdvanceMath.Matrix2x3.SetRow | ( | int | rowIndex, |
Vector3D | value | ||
) |
Määrittely tiedoston Matrix2x3.cs rivillä 1071.
Viittaukset AdvanceMath.ThrowHelper.GetThrowIndex(), AdvanceMath.Matrix2x3.RowCount, AdvanceMath.Matrix2x3.Rx ja AdvanceMath.Matrix2x3.Ry.
Määrittely tiedoston Matrix2x3.cs rivillä 484.
Viittaukset AdvanceMath.Matrix2x3.Subtract().
Määrittely tiedoston Matrix2x3.cs rivillä 501.
Viittaukset AdvanceMath.Matrix2x3.Subtract().
Used to subtract two matrices.
left | |
right |
Määrittely tiedoston Matrix2x3.cs rivillä 456.
Viittaukset AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
Viitattu AdvanceMath.Matrix2x3.operator-() ja AdvanceMath.Matrix2x3.Subtract().
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 490.
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 507.
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 471.
Scalar[] AdvanceMath.Matrix2x3.ToArray | ( | ) |
Copies the elements of the IAdvanceValueType to a new array of Scalar .
Toteuttaa luokan AdvanceMath.IAdvanceValueType.
Määrittely tiedoston Matrix2x3.cs rivillä 1089.
Viittaukset AdvanceMath.Matrix2x3.Count, AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
Matrix4x4 AdvanceMath.Matrix2x3.ToMatrix4x4 | ( | ) |
Määrittely tiedoston Matrix2x3.cs rivillä 1106.
Viittaukset AdvanceMath.Matrix4x4.Identity, AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix4x4.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix2x3.m11, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix2x3.m12 ja AdvanceMath.Matrix4x4.m12.
Matrix4x4 AdvanceMath.Matrix2x3.ToMatrix4x4From2D | ( | ) |
Määrittely tiedoston Matrix2x3.cs rivillä 1099.
Viittaukset AdvanceMath.Matrix4x4.Identity, AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix4x4.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix4x4.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix4x4.m03, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix4x4.m10, AdvanceMath.Matrix2x3.m11, AdvanceMath.Matrix4x4.m11, AdvanceMath.Matrix2x3.m12 ja AdvanceMath.Matrix4x4.m13.
Scalar[,] AdvanceMath.Matrix2x3.ToMatrixArray | ( | ) |
Määrittely tiedoston Matrix2x3.cs rivillä 1085.
Viittaukset AdvanceMath.Matrix2x3.ColumnCount, AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11, AdvanceMath.Matrix2x3.m12 ja AdvanceMath.Matrix2x3.RowCount.
override string AdvanceMath.Matrix2x3.ToString | ( | ) |
Määrittely tiedoston Matrix2x3.cs rivillä 1145.
Viittaukset AdvanceMath.Matrix2x3.FormatString ja AdvanceMath.Matrix2x3.ToStringInternal().
string AdvanceMath.Matrix2x3.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 Matrix2x3.cs rivillä 1141.
Viittaukset AdvanceMath.Matrix2x3.FormatableString ja AdvanceMath.Matrix2x3.ToStringInternal().
|
private |
Määrittely tiedoston Matrix2x3.cs rivillä 1135.
Viittaukset AdvanceMath.Matrix2x3.FormatString, AdvanceMath.Matrix2x3.m00, AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02, AdvanceMath.Matrix2x3.m10, AdvanceMath.Matrix2x3.m11 ja AdvanceMath.Matrix2x3.m12.
Viitattu AdvanceMath.Matrix2x3.ToString().
Scalar[] AdvanceMath.Matrix2x3.ToTransposedArray | ( | ) |
Määrittely tiedoston Matrix2x3.cs rivillä 1093.
Määrittely tiedoston Matrix2x3.cs rivillä 425.
Viittaukset AdvanceMath.Matrix2x3.Transpose().
Viitattu AdvanceMath.Matrix2x3.Transpose().
Määrittely tiedoston Matrix2x3.cs rivillä 431.
Viittaukset AdvanceMath.Matrix2x3.m01, AdvanceMath.Matrix2x3.m02 ja AdvanceMath.Matrix2x3.m12.
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 830.
Viittaukset AdvanceMath.Matrix2x3.Zero.
|
static |
The number of columns.
Määrittely tiedoston Matrix2x3.cs rivillä 71.
Viitattu AdvanceMath.Matrix2x3.GetColumn(), AdvanceMath.Matrix2x3.SetColumn() ja AdvanceMath.Matrix2x3.ToMatrixArray().
|
static |
The number of Scalar values in the class.
Määrittely tiedoston Matrix2x3.cs rivillä 75.
Viitattu AdvanceMath.Matrix2x3.Copy() ja AdvanceMath.Matrix2x3.ToArray().
|
staticprivate |
Määrittely tiedoston Matrix2x3.cs rivillä 83.
Viitattu AdvanceMath.Matrix2x3.ToString().
|
staticprivate |
Määrittely tiedoston Matrix2x3.cs rivillä 82.
Viitattu AdvanceMath.Matrix2x3.ToString() ja AdvanceMath.Matrix2x3.ToStringInternal().
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 85.
Scalar AdvanceMath.Matrix2x3.m00 |
Määrittely tiedoston Matrix2x3.cs rivillä 857.
Viitattu AdvanceMath.Matrix2x3.Matrix2x3(), AdvanceMath.Matrix2x3.Add(), AdvanceMath.Matrix2x3.Equals(), AdvanceMath.Matrix2x3.FromRotationZ(), AdvanceMath.Matrix2x3.FromScale(), AdvanceMath.Matrix2x3.FromTranslate2D(), AdvanceMath.Matrix2x3.GetDeterminant(), AdvanceMath.Matrix2x3.GetHashCode(), AdvanceMath.Matrix2x3.Multiply(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix2x3.Negate(), AdvanceMath.Matrix2x3.operator Matrix2x3(), AdvanceMath.Matrix2x3.operator*(), AdvanceMath.Vector2D.operator*(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Matrix2x3.operator+(), AdvanceMath.Matrix2x3.operator-(), AdvanceMath.Matrix2x3.operator==(), AdvanceMath.Matrix2x3.Subtract(), AdvanceMath.Matrix2x3.ToArray(), AdvanceMath.Matrix2x3.ToMatrix4x4(), AdvanceMath.Matrix2x3.ToMatrix4x4From2D(), AdvanceMath.Matrix2x3.ToMatrixArray(), AdvanceMath.Matrix2x3.ToStringInternal(), AdvanceMath.Vector2D.Transform() ja AdvanceMath.Vector2D.TransformNormal().
Scalar AdvanceMath.Matrix2x3.m01 |
Määrittely tiedoston Matrix2x3.cs rivillä 857.
Viitattu AdvanceMath.Matrix2x3.Matrix2x3(), AdvanceMath.Matrix2x3.Add(), AdvanceMath.Matrix2x3.Equals(), AdvanceMath.Matrix2x3.FromRotationZ(), AdvanceMath.Matrix2x3.FromScale(), AdvanceMath.Matrix2x3.FromTranslate2D(), AdvanceMath.Matrix2x3.GetAdjoint(), AdvanceMath.Matrix2x3.GetCofactor(), AdvanceMath.Matrix2x3.GetDeterminant(), AdvanceMath.Matrix2x3.GetHashCode(), AdvanceMath.Matrix2x3.Invert(), AdvanceMath.Matrix2x3.Multiply(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix2x3.Negate(), AdvanceMath.Matrix2x3.operator Matrix2x3(), AdvanceMath.Matrix2x3.operator*(), AdvanceMath.Vector2D.operator*(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Matrix2x3.operator+(), AdvanceMath.Matrix2x3.operator-(), AdvanceMath.Matrix2x3.operator==(), AdvanceMath.Matrix2x3.Subtract(), AdvanceMath.Matrix2x3.ToArray(), AdvanceMath.Matrix2x3.ToMatrix4x4(), AdvanceMath.Matrix2x3.ToMatrix4x4From2D(), AdvanceMath.Matrix2x3.ToMatrixArray(), AdvanceMath.Matrix2x3.ToStringInternal(), AdvanceMath.Vector2D.Transform(), AdvanceMath.Vector2D.TransformNormal() ja AdvanceMath.Matrix2x3.Transpose().
Scalar AdvanceMath.Matrix2x3.m02 |
Määrittely tiedoston Matrix2x3.cs rivillä 857.
Viitattu AdvanceMath.Matrix2x3.Matrix2x3(), AdvanceMath.Matrix2x3.Add(), AdvanceMath.Matrix2x3.Equals(), AdvanceMath.Matrix2x3.FromRotationZ(), AdvanceMath.Matrix2x3.FromScale(), AdvanceMath.Matrix2x3.FromTranslate2D(), AdvanceMath.Matrix2x3.GetAdjoint(), AdvanceMath.Matrix2x3.GetCofactor(), AdvanceMath.Matrix2x3.GetDeterminant(), AdvanceMath.Matrix2x3.GetHashCode(), AdvanceMath.Matrix2x3.Invert(), AdvanceMath.Matrix2x3.Multiply(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix2x3.Negate(), AdvanceMath.Matrix2x3.operator Matrix2x3(), AdvanceMath.Matrix2x3.operator*(), AdvanceMath.Vector2D.operator*(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Matrix2x3.operator+(), AdvanceMath.Matrix2x3.operator-(), AdvanceMath.Matrix2x3.operator==(), AdvanceMath.Matrix2x3.Subtract(), AdvanceMath.Matrix2x3.ToArray(), AdvanceMath.Matrix2x3.ToMatrix4x4(), AdvanceMath.Matrix2x3.ToMatrix4x4From2D(), AdvanceMath.Matrix2x3.ToMatrixArray(), AdvanceMath.Matrix2x3.ToStringInternal(), AdvanceMath.Vector2D.Transform() ja AdvanceMath.Matrix2x3.Transpose().
Scalar AdvanceMath.Matrix2x3.m10 |
Määrittely tiedoston Matrix2x3.cs rivillä 859.
Viitattu AdvanceMath.Matrix2x3.Matrix2x3(), AdvanceMath.Matrix2x3.Add(), AdvanceMath.Matrix2x3.Equals(), AdvanceMath.Matrix2x3.FromRotationZ(), AdvanceMath.Matrix2x3.FromScale(), AdvanceMath.Matrix2x3.FromTranslate2D(), AdvanceMath.Matrix2x3.GetDeterminant(), AdvanceMath.Matrix2x3.GetHashCode(), AdvanceMath.Matrix2x3.Multiply(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix2x3.Negate(), AdvanceMath.Matrix2x3.operator Matrix2x3(), AdvanceMath.Matrix2x3.operator*(), AdvanceMath.Vector2D.operator*(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Matrix2x3.operator+(), AdvanceMath.Matrix2x3.operator-(), AdvanceMath.Matrix2x3.operator==(), AdvanceMath.Matrix2x3.Subtract(), AdvanceMath.Matrix2x3.ToArray(), AdvanceMath.Matrix2x3.ToMatrix4x4(), AdvanceMath.Matrix2x3.ToMatrix4x4From2D(), AdvanceMath.Matrix2x3.ToMatrixArray(), AdvanceMath.Matrix2x3.ToStringInternal(), AdvanceMath.Vector2D.Transform() ja AdvanceMath.Vector2D.TransformNormal().
Scalar AdvanceMath.Matrix2x3.m11 |
Määrittely tiedoston Matrix2x3.cs rivillä 859.
Viitattu AdvanceMath.Matrix2x3.Matrix2x3(), AdvanceMath.Matrix2x3.Add(), AdvanceMath.Matrix2x3.Equals(), AdvanceMath.Matrix2x3.FromRotationZ(), AdvanceMath.Matrix2x3.FromScale(), AdvanceMath.Matrix2x3.FromTranslate2D(), AdvanceMath.Matrix2x3.GetAdjoint(), AdvanceMath.Matrix2x3.GetCofactor(), AdvanceMath.Matrix2x3.GetDeterminant(), AdvanceMath.Matrix2x3.GetHashCode(), AdvanceMath.Matrix2x3.Invert(), AdvanceMath.Matrix2x3.Multiply(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix2x3.Negate(), AdvanceMath.Matrix2x3.operator Matrix2x3(), AdvanceMath.Matrix2x3.operator*(), AdvanceMath.Vector2D.operator*(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Matrix2x3.operator+(), AdvanceMath.Matrix2x3.operator-(), AdvanceMath.Matrix2x3.operator==(), AdvanceMath.Matrix2x3.Subtract(), AdvanceMath.Matrix2x3.ToArray(), AdvanceMath.Matrix2x3.ToMatrix4x4(), AdvanceMath.Matrix2x3.ToMatrix4x4From2D(), AdvanceMath.Matrix2x3.ToMatrixArray(), AdvanceMath.Matrix2x3.ToStringInternal(), AdvanceMath.Vector2D.Transform() ja AdvanceMath.Vector2D.TransformNormal().
Scalar AdvanceMath.Matrix2x3.m12 |
Määrittely tiedoston Matrix2x3.cs rivillä 859.
Viitattu AdvanceMath.Matrix2x3.Matrix2x3(), AdvanceMath.Matrix2x3.Add(), AdvanceMath.Matrix2x3.Equals(), AdvanceMath.Matrix2x3.FromRotationZ(), AdvanceMath.Matrix2x3.FromScale(), AdvanceMath.Matrix2x3.FromTranslate2D(), AdvanceMath.Matrix2x3.GetAdjoint(), AdvanceMath.Matrix2x3.GetCofactor(), AdvanceMath.Matrix2x3.GetDeterminant(), AdvanceMath.Matrix2x3.GetHashCode(), AdvanceMath.Matrix2x3.Invert(), AdvanceMath.Matrix2x3.Multiply(), AdvanceMath.Matrix4x4.Multiply(), AdvanceMath.Matrix2x3.Negate(), AdvanceMath.Matrix2x3.operator Matrix2x3(), AdvanceMath.Matrix2x3.operator*(), AdvanceMath.Vector2D.operator*(), AdvanceMath.Matrix4x4.operator*(), AdvanceMath.Matrix2x3.operator+(), AdvanceMath.Matrix2x3.operator-(), AdvanceMath.Matrix2x3.operator==(), AdvanceMath.Matrix2x3.Subtract(), AdvanceMath.Matrix2x3.ToArray(), AdvanceMath.Matrix2x3.ToMatrix4x4(), AdvanceMath.Matrix2x3.ToMatrix4x4From2D(), AdvanceMath.Matrix2x3.ToMatrixArray(), AdvanceMath.Matrix2x3.ToStringInternal(), AdvanceMath.Vector2D.Transform() ja AdvanceMath.Matrix2x3.Transpose().
|
static |
The number of rows.
Määrittely tiedoston Matrix2x3.cs rivillä 67.
Viitattu AdvanceMath.Matrix2x3.GetRow(), AdvanceMath.Matrix2x3.SetRow() ja AdvanceMath.Matrix2x3.ToMatrixArray().
The Size of the class in bytes;
Määrittely tiedoston Matrix2x3.cs rivillä 79.
|
static |
Määrittely tiedoston Matrix2x3.cs rivillä 88.
Viitattu AdvanceMath.Matrix2x3.Parse() ja AdvanceMath.Matrix2x3.TryParse().
|
get |
Määrittely tiedoston Matrix2x3.cs rivillä 997.
|
get |
Määrittely tiedoston Matrix2x3.cs rivillä 1006.
|
get |
Määrittely tiedoston Matrix2x3.cs rivillä 1027.
|
get |
Määrittely tiedoston Matrix2x3.cs rivillä 1025.
|
getset |
Määrittely tiedoston Matrix2x3.cs rivillä 935.
Viitattu AdvanceMath.Matrix2x3.GetColumn() ja AdvanceMath.Matrix2x3.SetColumn().
|
getset |
Määrittely tiedoston Matrix2x3.cs rivillä 948.
Viitattu AdvanceMath.Matrix2x3.GetColumn() ja AdvanceMath.Matrix2x3.SetColumn().
|
getset |
Määrittely tiedoston Matrix2x3.cs rivillä 961.
Viitattu AdvanceMath.Matrix2x3.GetColumn() ja AdvanceMath.Matrix2x3.SetColumn().
|
get |
Määrittely tiedoston Matrix2x3.cs rivillä 974.
|
get |
Määrittely tiedoston Matrix2x3.cs rivillä 1015.
|
get |
Määrittely tiedoston Matrix2x3.cs rivillä 1026.
|
getset |
Määrittely tiedoston Matrix2x3.cs rivillä 896.
Viitattu AdvanceMath.Matrix2x3.GetDeterminant(), AdvanceMath.Matrix2x3.GetRow() ja AdvanceMath.Matrix2x3.SetRow().
|
getset |
Määrittely tiedoston Matrix2x3.cs rivillä 917.
Viitattu AdvanceMath.Matrix2x3.GetDeterminant(), AdvanceMath.Matrix2x3.GetRow() ja AdvanceMath.Matrix2x3.SetRow().
|
get |
Swap the rows of the matrix with the columns.
Määrittely tiedoston Matrix2x3.cs rivillä 987.