Overload List
| Name | Description | |
|---|---|---|
| Multiply(Double, Cog3DMatrix3x3) |
Multiplication operator for a scalar and a matrix.
Note that the definition of this operator is: scale * matrix = matrix * scale. | |
| Multiply(Cog3DMatrix3x3, Cog3DMatrix3x3) |
Operator for composing one matrix and another matrix. Note that the definition of this operation is
matrix * rhs.
| |
| Multiply(Cog3DMatrix3x3, Cog3DVect3) |
Multiplication operator for a 3D matrix and a 3D point. Note that the definition of this operation is
matrix * point3D.
| |
| Multiply(Cog3DMatrix3x3, Double) |
Multiplication operator for a matrix and a scalar. Note that the definition of this operation is
matrix * scale.
| |
| Multiply(Cog3DVect3, Cog3DMatrix3x3) |
Multiplication operator for a 3D point and a 3D matrix. The definition of this operator is
point3D * matrix = matrix.Transpose() * point3D.
|
See Also