Microsoft DirectX 9.0 SDK Update (October 2004)

Matrix.Multiply Method

Language:

Note: This documentation is preliminary and is subject to change.

Determines the product of two matrices.

Definition

Visual Basic .NET Public Shared Function Multiply( _
    ByVal left As Matrix, _
    ByVal right As Matrix _
) As Matrix
C# public static Matrix Multiply(
    Matrix left,
    Matrix right
);
Managed C++ public: static Matrix Multiply(
    Matrix left,
    Matrix right
);
JScript .NET public static function Multiply(
    left : Matrix,
    right : Matrix
) : Matrix;

Parameters

left Microsoft.DirectX.Matrix. Source Matrix structure.
right Microsoft.DirectX.Matrix. Source Matrix structure.

Return Value

Microsoft.DirectX.Matrix . A Matrix structure that is the product of two matrices.

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


© 2004 Microsoft Corporation. All rights reserved. Terms of use.

Feedback? Please provide us with your comments on this topic.
For more help, visit the DirectX Developer Center