Matrix4x4.UnaryNegation(Matrix4x4) 运算符

定义

通过将其所有值乘以 -1,对指定矩阵求反。

public:
 static System::Numerics::Matrix4x4 operator -(System::Numerics::Matrix4x4 value);
public static System.Numerics.Matrix4x4 operator - (System.Numerics.Matrix4x4 value);
static member ( ~- ) : System.Numerics.Matrix4x4 -> System.Numerics.Matrix4x4
Public Shared Operator - (value As Matrix4x4) As Matrix4x4

参数

value
Matrix4x4

要求反的矩阵。

返回

求反后的矩阵。

适用于