File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1984,7 +1984,7 @@ export class CameraControls extends EventDispatcher {
1984
1984
fitToSphere ( sphereOrMesh : _THREE . Sphere | _THREE . Object3D , enableTransition : boolean ) : Promise < void [ ] > {
1985
1985
1986
1986
const promises : Promise < void > [ ] = [ ] ;
1987
- const isSphere = sphereOrMesh instanceof THREE . Sphere ;
1987
+ const isSphere = 'isSphere' in sphereOrMesh ;
1988
1988
const boundingSphere = isSphere ?
1989
1989
_sphere . copy ( sphereOrMesh as _THREE . Sphere ) :
1990
1990
CameraControls . createBoundingSphere ( sphereOrMesh as _THREE . Object3D , _sphere ) ;
@@ -2372,7 +2372,7 @@ export class CameraControls extends EventDispatcher {
2372
2372
*/
2373
2373
getSpherical ( out : _THREE . Spherical , receiveEndValue : boolean = true ) : _THREE . Spherical {
2374
2374
2375
- const _out = ! ! out && out instanceof THREE . Spherical ? out : new THREE . Spherical ( ) as _THREE . Spherical ;
2375
+ const _out = out || new THREE . Spherical ( ) as _THREE . Spherical ;
2376
2376
return _out . copy ( receiveEndValue ? this . _sphericalEnd : this . _spherical ) ;
2377
2377
2378
2378
}
You can’t perform that action at this time.
0 commit comments