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

두 번째 행렬입니다.

반환

value2의 각 요소를 value1의 해당 요소에서 뺀 결과로 생성되는 값을 포함하는 행렬입니다.

설명

메서드는 Subtraction 개체에 대한 빼기 연산자의 연산을 Matrix4x4 정의합니다.

적용 대상