Convert between Cartesian and cylindrical coordinate systems
Choose conversion direction and enter coordinates to transform between Cartesian (x,y,z) and cylindrical (ρ,φ,z) coordinate systems.
Cylindrical coordinates use (ρ,φ,z) where ρ is radial distance, φ is azimuthal angle, and z is height. Conversion formulas: x = ρcos(φ), y = ρsin(φ), ρ = √(x²+y²), φ = atan2(y,x).