Matrix3x2.Invert(Matrix3x2, Matrix3x2) 方法

定义

对指定矩阵求逆。 返回值指示操作是否成功。

public:
 static bool Invert(System::Numerics::Matrix3x2 matrix, [Runtime::InteropServices::Out] System::Numerics::Matrix3x2 % result);
public static bool Invert (System.Numerics.Matrix3x2 matrix, out System.Numerics.Matrix3x2 result);
static member Invert : System.Numerics.Matrix3x2 * Matrix3x2 -> bool
Public Shared Function Invert (matrix As Matrix3x2, ByRef result As Matrix3x2) As Boolean

参数

matrix
Matrix3x2

要求逆的矩阵。

result
Matrix3x2

此方法返回时,如果操作成功,则包含逆矩阵。

返回

如果 true 成功转换,则为 matrix;否则为 false

适用于