예제 #1
0
 /// <summary>Creates an inverse matrix! If the matrix takes a point from a -> b, then
 /// its inverse takes the point from b -> a.</summary>
 /// <returns>An inverse matrix of the current one.</returns>
 public Matrix Inverse()
 {
     NativeAPI.matrix_inverse(this, out Matrix result);
     return(result);
 }