|
Matrix4x4Multiply Method (Matrix4x4, Matrix4x4)
|
Multiplies two specified matrices.
Namespace:
Accord.Math
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static Matrix4x4 Multiply(
Matrix4x4 matrix1,
Matrix4x4 matrix2
)
Public Shared Function Multiply (
matrix1 As Matrix4x4,
matrix2 As Matrix4x4
) As Matrix4x4
Request Example
View SourceParameters
- matrix1
- Type: Accord.MathMatrix4x4
Matrix to multiply. - matrix2
- Type: Accord.MathMatrix4x4
Matrix to multiply by.
Return Value
Type:
Matrix4x4Return new matrix, which the result of multiplication of the two specified matrices.
See Also