Matrix.M22 속성

정의

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

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

속성 값

Double

Matrix 구조체의 두 번째 행과 두 번째 열 값입니다. 기본값은 1입니다.

예제

다음 예제에서는 두 곱할 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 구조입니다.

M11 M12 0
M21 M22 0
OffsetX OffsetY 1

적용 대상