| Matrix44FMultiply Operator (Matrix44F, Matrix44F) |
Multiplies two matrices.
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public static Matrix44F operator *(
Matrix44F m1,
Matrix44F m2
)
Public Shared Operator * (
m1 As Matrix44F,
m2 As Matrix44F
) As Matrix44F
public:
static Matrix44F operator *(
Matrix44F m1,
Matrix44F m2
)
static let inline (*)
m1 : Matrix44F *
m2 : Matrix44F : Matrix44F
Parameters
- m1
- Type: DigitalRune.Mathematics.AlgebraMatrix44F
The first matrix. - m2
- Type: DigitalRune.Mathematics.AlgebraMatrix44F
The second matrix.
Return Value
Type:
Matrix44FThe matrix with the product the two matrices.
See Also