Matrix4x4.Invert(Matrix4x4, Matrix4x4) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Inverts the specified matrix. The return value indicates whether the operation succeeded.
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
Parameters
- matrix
- Matrix4x4
The matrix to invert.
- result
- Matrix4x4
When this method returns, contains the inverted matrix if the operation succeeded.
Returns
true
if matrix
was converted successfully; otherwise, false
.
Applies to
Samarbejd med os på GitHub
Kilden til dette indhold kan findes på GitHub, hvor du også kan oprette og gennemse problemer og pullanmodninger. Du kan få flere oplysninger i vores vejledning til bidragydere.