computeBoundingSphere method

dynamic computeBoundingSphere()

Implementation

computeBoundingSphere() {
  if (this.boundingSphere == null) {
    this.boundingSphere = new THREE.Sphere(null, null);
  }

  this.boundingSphere!.setFromPoints(this.vertices, null);
}