Matrix44Multiply(Matrix44, Matrix44) Operator |
Multiplies two matrixes.
Namespace: CFX.Structures.GeometryAssembly: CFX (in CFX.dll) Version: 2.0.0+5bb1f71a933ed371a0f5f2d5e7db34c89b75f3ea
Syntaxpublic static Matrix44 operator *(
Matrix44 matrix1,
Matrix44 matrix2
)
Public Shared Operator * (
matrix1 As Matrix44,
matrix2 As Matrix44
) As Matrix44
Parameters
- matrix1 Matrix44
- Source Matrix44 on the left of the mul sign.
- matrix2 Matrix44
- Source Matrix44 on the right of the mul sign.
Return Value
Matrix44Result of the matrix multiplication.
Remarks
Using matrix multiplication algorithm - see http://en.wikipedia.org/wiki/Matrix_multiplication.
See Also