Explorar o código

Add points threshold to bounding sphere radius

Resolves issues described in #7710, #9309, and #10763. (hopefully)
WestLangley %!s(int64=8) %!d(string=hai) anos
pai
achega
5cd8b0300c
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      src/objects/Points.js

+ 1 - 0
src/objects/Points.js

@@ -46,6 +46,7 @@ Points.prototype = Object.assign( Object.create( Object3D.prototype ), {
 
 			sphere.copy( geometry.boundingSphere );
 			sphere.applyMatrix4( matrixWorld );
+			sphere.radius += threshold;
 
 			if ( raycaster.ray.intersectsSphere( sphere ) === false ) return;