Matrix4x4.Subtraction(Matrix4x4, Matrix4x4) 運算子
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將第二個矩陣中的每個元素減去第一個矩陣中相對應的元素。
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
第二個矩陣。
傳回
包含值的矩陣,此值為從 value2
中的每個元素減去 value1
中相對應的元素所產生。
備註
方法 Subtraction 會定義 對象的減法運算子運算 Matrix4x4 。