Matrix.op_Subtraction(Matrix,Matrix) Method (Microsoft.DirectX)

Subtracts two instances of the Matrix structure.

Definition

Visual Basic Public Shared Function op_Subtraction( _
    ByVal left As Matrix, _
    ByVal right As Matrix _
) As Matrix
C# public static Matrix op_Subtraction(
    Matrix left,
    Matrix right
);
C++ public:
static Matrix operator-(
    Matrix left,
    Matrix right
);
JScript public static function op_Subtraction(
    left : Matrix,
    right : Matrix
) : Matrix;

Parameters

left Microsoft.DirectX.Matrix
The Matrix structure to the left of the subtraction operator.
right Microsoft.DirectX.Matrix
The Matrix structure to the right of the subtraction operator.

Return Value

Microsoft.DirectX.Matrix
Resulting Matrix structure.