Matrix4x4.Subtraction(Matrix4x4, Matrix4x4) Operator
Definition
Viktigt
En del information gäller för förhandsversionen av en produkt och kan komma att ändras avsevärt innan produkten blir allmänt tillgänglig. Microsoft lämnar inga garantier, uttryckliga eller underförstådda, avseende informationen som visas här.
Subtraherar varje element i en andra matris från motsvarande element i en första matris.
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
Parametrar
- value1
- Matrix4x4
Den första matrisen.
- value2
- Matrix4x4
Den andra matrisen.
Returer
Matrisen som innehåller de värden som är resultatet av att subtrahera varje element från value2 motsvarande element i value1.
Kommentarer
Metoden Subtraction definierar driften av subtraktionsoperatorn för Matrix4x4 objekt.