Matrix.M12 속성

정의

Matrix 구조체의 첫 번째 행과 두 번째 열의 값을 가져오거나 설정합니다.

public:
 property double M12 { double get(); void set(double value); };
public double M12 { get; set; }
member this.M12 : double with get, set
Public Property M12 As Double

속성 값

이 행의 첫 번째 행과 두 번째 열의 값입니다 Matrix. 기본값은 0입니다.

예제

다음 예제에서는 두 Matrix 개의 구조체를 곱하는 방법과 값이 선언될 때와 구조체가 선언된 후에 값을 Matrix 할당하는 방법을 보여 있습니다.

private void multiplicationExample()
{

    Matrix matrix1 = new Matrix(5, 10, 15, 20, 25, 30);
    Matrix matrix2 = new Matrix(2, 4, 6, 8, 10, 12);
    
    // matrixResult is equal to (70,100,150,220,240,352) 
    Matrix matrixResult = Matrix.Multiply(matrix1, matrix2);
    
    // matrixResult2 is also
    // equal to (70,100,150,220,240,352) 
    Matrix matrixResult2 = matrix1 * matrix2;
}

설명

다음 표에서는 .Matrix

열 1 열 2 3열
M11 M12 0
M21 M22 0
OffsetX OffsetY 1

적용 대상