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

M11 M12 0
M21 M22 0
OffsetX OffsetY 1

適用於