Browse Source

fix bug 2

shyf1301 7 năm trước cách đây
mục cha
commit
3c9c090fed
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/math/Box3.js

+ 1 - 1
src/math/Box3.js

@@ -384,7 +384,7 @@ Object.assign( Box3.prototype, {
 
 		}
 
-		return ( min <= -plane.constant && max >= -plane.constant );
+		return ( min <= - plane.constant && max >= - plane.constant );
 
 	},