Skip to content

Commit f75d1e1

Browse files
authored
fix: avoid using instanceof for three object (#511)
1 parent cf39295 commit f75d1e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/CameraControls.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1984,7 +1984,7 @@ export class CameraControls extends EventDispatcher {
19841984
fitToSphere( sphereOrMesh: _THREE.Sphere | _THREE.Object3D, enableTransition: boolean ): Promise<void[]> {
19851985

19861986
const promises: Promise<void>[] = [];
1987-
const isSphere = sphereOrMesh instanceof THREE.Sphere;
1987+
const isSphere = 'isSphere' in sphereOrMesh;
19881988
const boundingSphere = isSphere ?
19891989
_sphere.copy( sphereOrMesh as _THREE.Sphere ) :
19901990
CameraControls.createBoundingSphere( sphereOrMesh as _THREE.Object3D, _sphere );
@@ -2372,7 +2372,7 @@ export class CameraControls extends EventDispatcher {
23722372
*/
23732373
getSpherical( out: _THREE.Spherical, receiveEndValue: boolean = true ): _THREE.Spherical {
23742374

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;
23762376
return _out.copy( receiveEndValue ? this._sphericalEnd : this._spherical );
23772377

23782378
}

0 commit comments

Comments
 (0)