예제 #1
0
inline Vector3 LinearSystem(Matrix3x3& A, Vector3& y)
{
  Matrix3x3 B;
  A.Inversion(B);
  return (B*y);
}