set method
Sets the given values to this bounding sphere.
Implementation
BoundingSphere set(Vector3 center, double radius ) {
this.center = center;
this.radius = radius;
return this;
}
Sets the given values to this bounding sphere.
BoundingSphere set(Vector3 center, double radius ) {
this.center = center;
this.radius = radius;
return this;
}