copy method

Cylindrical copy(
  1. Cylindrical other
)

Implementation

Cylindrical copy(Cylindrical other) {
  radius = other.radius;
  theta = other.theta;
  y = other.y;

  return this;
}