| FloatMatrix Class |
Namespace: Candlelight
public class FloatMatrix
The FloatMatrix type exposes the following members.
| Name | Description | |
|---|---|---|
| FloatMatrix(IListSingle) |
Initializes a new Nx1 instance of the FloatMatrix class.
| |
| FloatMatrix(IListQuaternion) |
Initializes a new Nx4 instance of the FloatMatrix class.
| |
| FloatMatrix(IListVector2) |
Initializes a new Nx2 instance of the FloatMatrix class.
| |
| FloatMatrix(IListVector3) |
Initializes a new Nx3 instance of the FloatMatrix class.
| |
| FloatMatrix(IListVector4) |
Initializes a new Nx4 instance of the FloatMatrix class.
| |
| FloatMatrix(Single) |
Initializes a new instance of the FloatMatrix class.
| |
| FloatMatrix(Matrix4x4) |
Initializes a new 4x4 instance of the FloatMatrix class by copying an existing
Matrix4x4.
| |
| FloatMatrix(FloatMatrix) |
Initializes a new instance of the FloatMatrix class by copying an existing
FloatMatrix.
| |
| FloatMatrix(Int32, Int32) |
Initializes a new instance of the FloatMatrix class.
|
| Name | Description | |
|---|---|---|
| GetTranspose |
Gets the transpose. For example, the transpose of MxN is NxM.
| |
| ToString |
Returns a String that represents the current FloatMatrix.
(Overrides ObjectToString.) |
| Name | Description | |
|---|---|---|
| Division |
Divides the specified FloatMatrix by the specified scalar value.
| |
| Multiply(FloatMatrix, FloatMatrix) |
Multiplies two matrices by one another. The column count in the second matrix must match the row count in
the first matrix.
| |
| Multiply(FloatMatrix, Single) |
Multiplies the specified FloatMatrix by the specified scalar value.
|
| Name | Description | |
|---|---|---|
| Columns |
Gets the column count.
| |
| Determinant |
Gets the determinant.
| |
| Identity2x2 |
Gets a 2x2 identity matrix.
| |
| Identity3x3 |
Gets a 3x3 identity matrix.
| |
| Identity4x4 |
Gets a 4x4 identity matrix.
| |
| IsSquare |
Gets a value indicating whether this FloatMatrix is square.
| |
| Item |
Gets or sets the element with the specified row and column indices.
| |
| Rows |
Gets the row count.
| |
| Trace |
Gets the trace.
|