Matrix4x4.Invert(Matrix4x4, Matrix4x4) 方法

定义

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

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

参数

matrix
Matrix4x4

要求逆的矩阵。

result
Matrix4x4

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

返回

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

适用于