Matrix4x4.Invert(Matrix4x4, Matrix4x4) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
反轉指定的矩陣。 指示作業是否成功的傳回值。
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
如果作業成功,則當此方法傳回時,此參數會包含反轉的矩陣。
傳回
如果 matrix
轉換成功,則為 true
,否則為 false
。