Browse Source

fix bug 2

shyf1301 7 years ago
parent
commit
3c9c090fed
1 changed files with 1 additions and 1 deletions
  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 );
 
 	},