set method

Cylindrical set(
  1. num radius,
  2. num theta,
  3. num y
)

Implementation

Cylindrical set(num radius, num theta, num y) {
  this.radius = radius;
  this.theta = theta;
  this.y = y;

  return this;
}