Multiplies two specified matrices.

Namespace:  AForge.Math
Assembly:  AForge.Math (in AForge.Math.dll) Version: 2.2.5.0 (2.2.5.0)

Syntax

C#
public static Matrix4x4 Multiply(
	Matrix4x4 matrix1,
	Matrix4x4 matrix2
)

Parameters

matrix1
Type: AForge.Math..::.Matrix4x4
Matrix to multiply.
matrix2
Type: AForge.Math..::.Matrix4x4
Matrix to multiply by.

Return Value

Return new matrix, which the result of multiplication of the two specified matrices.

See Also