Matrix.MultiplyTranspose Method ()
Calculates the transposed product of two matrices.
Overload List
public void MultiplyTranspose(Matrix); public static Matrix MultiplyTranspose(Matrix, Matrix);
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