Inverts this Matrix! If the matrix takes a point from a -> b, then its inverse takes the point from b -> a.
()
| 149 | /// <summary>Inverts this Matrix! If the matrix takes a point from a |
| 150 | /// -> b, then its inverse takes the point from b -> a.</summary> |
| 151 | public void Invert() => Matrix4x4.Invert(m, out m); |
| 152 | |
| 153 | /// <summary>Transposes this Matrix! Transposing is like rotating the |
| 154 | /// matrix 90 clockwise, or turning the rows into columns. This can be |