Matrix4x4.Subtraction(Matrix4x4, Matrix4x4) 运算符

定义

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

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

参数

value1
Matrix4x4

第一个矩阵。

value2
Matrix4x4

第二个矩阵。

返回

包含从 value1 中的每个元素中减去 value2 中的对应元素得到的值的矩阵。

注解

方法 Subtraction 定义 对象的减法运算符的操作 Matrix4x4

适用于