copy method
Implementation
Cylindrical copy(Cylindrical other) {
radius = other.radius;
theta = other.theta;
y = other.y;
return this;
}
Cylindrical copy(Cylindrical other) {
radius = other.radius;
theta = other.theta;
y = other.y;
return this;
}