set method

Spherical set(
  1. double radius,
  2. double phi,
  3. double theta
)

Implementation

Spherical set(double radius, double phi, double theta) {
  this.radius = radius;
  this.phi = phi;
  this.theta = theta;

  return this;
}