We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22acb84 commit c68fc50Copy full SHA for c68fc50
src/core/meshBounds.tsx
@@ -15,7 +15,7 @@ export function meshBounds(raycaster: Raycaster, intersects: Intersection[]) {
15
_sphere.copy(geometry.boundingSphere)
16
_sphere.applyMatrix4(matrixWorld)
17
if (raycaster.ray.intersectsSphere(_sphere) === false) return
18
- _inverseMatrix.getInverse(matrixWorld)
+ _inverseMatrix.copy(matrixWorld).invert()
19
_ray.copy(raycaster.ray).applyMatrix4(_inverseMatrix)
20
// Check boundingBox before continuing
21
if (geometry.boundingBox !== null && _ray.intersectBox(geometry.boundingBox, _vA) === null) return
0 commit comments