3d matrix - 3d matrix multiplication.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public static Matrix3d operator *(
	Matrix3d A,
	Matrix3d B
)
Visual Basic (Declaration)
Public Shared Operator * ( _
	A As Matrix3d, _
	B As Matrix3d _
) As Matrix3d
Visual C++
public:
static Matrix3d^ operator *(
	Matrix3d^ A, 
	Matrix3d^ B
)

Return Value

Returns the matrix C = A * B.

Remarks

Note that A * B != B * A.

See Also