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