svdInverse(float3x3)
Calculates the inverse of a 3x3 matrix using Singular Value Decomposition (SVD).
Read time 1 minuteLast updated 12 days ago
Definition
- Type: Method
- Namespace: Unity.Mathematics
- Assembly: UnityEngine.MathematicsModule
public static float3x3 svdInverse(float3x3 a)
Parameters
The 3x3 matrix to calculate the inverse of.
Returns
Type | Description |
|---|---|
| float3x3 | The inverse of the 3x3 matrix. |