!1976 优化:调整法线共面判断误差值

pull/1975/MERGE
林三 2 years ago committed by ChenX
parent b1cf80ec71
commit 0cee6cdd2e

@ -148,7 +148,7 @@ export function MatrixIsCoplane2(matrixFrom: Matrix4, matrixTo: Matrix4, zFuzz:
let nor2 = new Vector3().setFromMatrixColumn(matrixTo, 2); let nor2 = new Vector3().setFromMatrixColumn(matrixTo, 2);
//法线共面 //法线共面
if (!equalv3(nor1, nor2.negate(), 1e-5)) if (!equalv3(nor1, nor2.negate(), 1e-4))
return false; return false;
//高共面 //高共面

Loading…
Cancel
Save