Matrix.MultiplyTranspose(Matrix,Matrix) Method (Microsoft.DirectX)
Calculates the transposed product of two matrices.
Definition
Visual Basic Public Shared Function MultiplyTranspose( _
ByVal left As Matrix, _
ByVal right As Matrix _
) As MatrixC# public static Matrix MultiplyTranspose(
Matrix left,
Matrix right
);C++ public:
static Matrix MultiplyTranspose(
Matrix left,
Matrix right
);JScript public static function MultiplyTranspose(
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 and transposition of two matrices.
Remarks
This method's result is the transposed product of two transformation matrices:
Out = T(this instance * source).
This method is useful for setting matrices as constants for vertex and pixel shaders.
See Also