Matrix3x2.Subtraction(Matrix3x2, Matrix3x2) 操作员

定义

从第一个矩阵中的相应元素中减去第二个矩阵中的每个元素。

public:
 static System::Numerics::Matrix3x2 operator -(System::Numerics::Matrix3x2 value1, System::Numerics::Matrix3x2 value2);
public static System.Numerics.Matrix3x2 operator -(System.Numerics.Matrix3x2 value1, System.Numerics.Matrix3x2 value2);
static member ( - ) : System.Numerics.Matrix3x2 * System.Numerics.Matrix3x2 -> System.Numerics.Matrix3x2
Public Shared Operator - (value1 As Matrix3x2, value2 As Matrix3x2) As Matrix3x2

参数

value1
Matrix3x2

第一个矩阵。

value2
Matrix3x2

第二个矩阵。

返回

包含从其相应元素中 value2 减去每个元素的值的 value1矩阵。

注解

该方法 Subtract 定义对象的减法运算符 Matrix3x2 的操作。

适用于