computeBoundingSphere method

dynamic computeBoundingSphere()

Implementation

computeBoundingSphere() {
  boundingSphere ??= three.Sphere(null, null);

  boundingSphere!.setFromPoints(vertices, null);
}