Branimir Karadžić 10 年之前
父節點
當前提交
d551e44c0c
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      include/bx/fpumath.h

+ 1 - 1
include/bx/fpumath.h

@@ -902,7 +902,7 @@ namespace bx
 			sumX,  sumY,  float(_numPoints),
 		};
 		float invMtx[9];
-		bx::mtx3Inverse(invMtx, mtx);
+		mtx3Inverse(invMtx, mtx);
 
 		_result[0] = invMtx[0]*sumXZ + invMtx[1]*sumYZ + invMtx[2]*sumZ;
 		_result[1] = invMtx[3]*sumXZ + invMtx[4]*sumYZ + invMtx[5]*sumZ;