Matrix.M22 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置此 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
属性值
此 Matrix 结构中第二行与第二列相交处的值。 默认值为 1。
示例
以下示例演示如何将两个 MatrixMatrix 结构相乘,以及如何在声明 结构后向 赋值。
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 |