 |
Jypeli
9
The simple game programming library
|
Siirry tämän tiedoston dokumentaatioon.
43 Scalar this[
int index] {
get;
set;}
104 Scalar this[
int row,
int column] {
get;
set;}
112 Scalar[,] ToMatrixArray();
146 where M : struct,
IMatrix<M, VC, VR>
void CopyFrom(Scalar[] array, int index)
Copies all the elements of the IAdvanceValueType, of the specified one-dimensional Array to the IAdva...
string ToString(string format)
turns the object into a string representation of itself with a special format for each Scaler in it.
void SetRow(int rowIndex, VR value)
Sets the VR at the specified Row.
M Inverted
Gets the Inverse of the IMatrix
int Count
Gets a 32-bit integer that represents the total number of elements in all the dimensions of IAdvanceV...
V Normalized
Gets the Normalized Vector. (Unit Vector)
void SetColumn(int columnIndex, VC value)
Sets the VC at the specified Column.
int ColumnCount
Gets a 32-bit integer that represents the total number of Columns in the IMatrix.
Scalar Determinant
Gets the Determinant of the IMatrix
void CopyTo(Scalar[] array, int index)
Copies all the elements of the IAdvanceValueType to the specified one-dimensional Array of Scalar.
Scalar[] ToArray()
Copies the elements of the IAdvanceValueType to a new array of Scalar .
void CopyTransposedTo(Scalar[] array, int index)
Copies all the elements, in a Transposed order, of the IAdvanceValueType to the specified one-dimensi...
M Adjoint
Gets the Adjoint (Conjugate Transpose) of the IMatrix
Scalar Magnitude
Gets or Sets the Magnitude (Length of a Vector).
M Cofactor
Gets the Cofactor (The Transpose of the Adjoint) of the IMatrix
Scalar[] ToTransposedArray()
Copies the elements, in a Transposed order, of the IMatrix to a new array of Scalar.
int RowCount
Gets a 32-bit integer that represents the total number of Rows in the IMatrix.
void CopyTransposedFrom(Scalar[] array, int index)
Copies all the elements, in a Transposed order, up to the IAdvanceValueType.Count of the IAdvanceValu...
VC GetColumn(int columnIndex)
Gets the VC at the specified Column.
VR GetRow(int rowIndex)
Gets the VR at the specified Row.
Scalar MagnitudeSq
Gets the Squared Magnitude (IE Magnitude*Magnitude).
M Transposed
Gets the Transpose of the IMatrix