Browse Source

Remove unnecessary check for zero determinant in Basis::orthonormalize().

Marcel Admiraal 5 years ago
parent
commit
8e6e91f2cd
1 changed files with 0 additions and 4 deletions
  1. 0 4
      core/math/basis.cpp

+ 0 - 4
core/math/basis.cpp

@@ -77,10 +77,6 @@ void Basis::invert() {
 
 void Basis::orthonormalize() {
 
-#ifdef MATH_CHECKS
-	ERR_FAIL_COND(determinant() == 0);
-#endif
-
 	// Gram-Schmidt Process
 
 	Vector3 x = get_axis(0);