Click or drag to resize
FloatMatrixMultiply Operator (FloatMatrix, FloatMatrix)
Multiplies two matrices by one another. The column count in the second matrix must match the row count in the first matrix.

Namespace: Candlelight
Assembly: Assembly-CSharp-firstpass (in Assembly-CSharp-firstpass.dll) Version: 0.0.0.0
Syntax
C#
public static FloatMatrix operator *(
	FloatMatrix m1,
	FloatMatrix m2
)

Parameters

m1
Type: CandlelightFloatMatrix
The first FloatMatrix.
m2
Type: CandlelightFloatMatrix
The second FloatMatrix.

Return Value

Type: FloatMatrix
The product of the two specified matrices.
See Also