Matrix.Multiply(Matrix) Method (Microsoft.DirectX)

Determines the product of two matrices.

Definition

Visual Basic Public Sub Multiply( _
    ByVal source As Matrix _
)
C# public void Multiply(
    Matrix source
);
C++ public:
void Multiply(
    Matrix source
);
JScript public function Multiply(
    source : Matrix
);

Parameters

source Microsoft.DirectX.Matrix
Source Matrix structure to multiply by the current instance.

Remarks

This method's result represents the transformation of left (or the current instance) followed by the transformation of right (or source).

The following equations demonstrate how the multiplication takes place.

Out = left * right

Out = this instance * source

See Also