SCNMatrix4.Invert 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.
Overloads
Invert() |
Calculates the inverse of this matrix, if this matrix is invertible. |
Invert(SCNMatrix4) |
Calculates the inverse of |
Invert()
Calculates the inverse of this matrix, if this matrix is invertible.
public void Invert ();
member this.Invert : unit -> unit
Remarks
Raises an InvalidOperationException if this matrix is singular.
Applies to
Invert(SCNMatrix4)
Calculates the inverse of mat
, if it is invertible.
public static SceneKit.SCNMatrix4 Invert (SceneKit.SCNMatrix4 mat);
static member Invert : SceneKit.SCNMatrix4 -> SceneKit.SCNMatrix4
Parameters
- mat
- SCNMatrix4
Returns
Raises an InvalidOperationException if mat
is singular.