Browse Source

Quat : Removed dead code

TothBenoit 2 tháng trước cách đây
mục cha
commit
96c2c92401
1 tập tin đã thay đổi với 0 bổ sung1 xóa
  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;