Coordinate Conversion Formulas
Rectangular → Polar:
r = √(x² + y²), θ = atan2(y, x)
Polar → Rectangular:
x = r cos(θ), y = r sin(θ)
Convert between rectangular (x, y) and polar (r, θ) coordinate systems.
Was könnten wir verbessern?
Rectangular → Polar:
r = √(x² + y²), θ = atan2(y, x)
Polar → Rectangular:
x = r cos(θ), y = r sin(θ)