set method

BoundingSphere set(
  1. Vector3 center,
  2. double radius
)

Sets the given values to this bounding sphere.

Implementation

BoundingSphere set(Vector3 center, double radius ) {
	this.center = center;
	this.radius = radius;

	return this;
}