| Matrix44FMultiply Method (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 Multiply(
Matrix44F m1,
Matrix44F m2
)
Public Shared Function Multiply (
m1 As Matrix44F,
m2 As Matrix44F
) As Matrix44F
public:
static Matrix44F Multiply(
Matrix44F m1,
Matrix44F m2
)
static member Multiply :
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