Sfoglia il codice sorgente

Quat : Removed dead code

TothBenoit 1 settimana fa
parent
commit
96c2c92401
1 ha cambiato i file con 0 aggiunte e 1 eliminazioni
  1. 0 1
      h3d/Quat.hx

+ 0 - 1
h3d/Quat.hx

@@ -55,7 +55,6 @@ class Quat {
 		var hx = from.x + to.x;
 		var hy = from.y + to.y;
 		var hz = from.z + to.z;
-		var h = Math.invSqrt(hx * hx + hy * hy + hz * hz);
 		x = from.y * hz - from.z * hy;
 		y = from.z * hx - from.x * hz;
 		z = from.x * hy - from.y * hx;