diff --git a/src/mol-canvas3d/helper/bounding-sphere-helper.ts b/src/mol-canvas3d/helper/bounding-sphere-helper.ts index b3fbe849e241cb242e2f2bce4104626b945ebbe3..dd30418ef777e53a032ebe8fe4f573cdc1b2098f 100644 --- a/src/mol-canvas3d/helper/bounding-sphere-helper.ts +++ b/src/mol-canvas3d/helper/bounding-sphere-helper.ts @@ -27,11 +27,11 @@ export class BoundingSphereHelper { update() { const builder = MeshBuilder.create(1024, 512, this.mesh) if (this.scene.boundingSphere.radius) { - addSphere(builder, this.scene.boundingSphere.center, this.scene.boundingSphere.radius, 3) + addSphere(builder, this.scene.boundingSphere.center, this.scene.boundingSphere.radius, 2) } this.scene.forEach(r => { if (r.boundingSphere.radius) { - addSphere(builder, r.boundingSphere.center, r.boundingSphere.radius, 3) + addSphere(builder, r.boundingSphere.center, r.boundingSphere.radius, 2) } }) this.mesh = builder.getMesh()