Matrix.Invert 方法
定义
如果此 Matrix 是可逆转的,则进行逆转。Inverts this Matrix, if it is invertible.
public:
void Invert();
public void Invert ();
member this.Invert : unit -> unit
Public Sub Invert ()
示例
下面的代码示例创建一个矩阵并反转它:The following code example creates a matrix and inverts it:
Matrix myMatrix = new Matrix(3, 5, 1, 2, 2, 4);
myMatrix.Invert();
适用于