瀏覽代碼

Quat : Removed dead code

TothBenoit 2 月之前
父節點
當前提交
96c2c92401
共有 1 個文件被更改,包括 0 次插入1 次删除
  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;