Matrix3x2.Addition(Matrix3x2, Matrix3x2) 연산자

정의

한 행렬의 각 요소와 두 번째 행렬의 해당 요소를 더합니다.

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

매개 변수

value1
Matrix3x2

첫 번째 행렬입니다.

value2
Matrix3x2

두 번째 행렬입니다.

반환

Matrix3x2

합한 값을 포함하는 행렬입니다.

설명

메서드는 Addition 개체에 대한 더하기 연산자의 연산을 Matrix3x2 정의합니다.

적용 대상