//! Polar projection helpers.
//!
//! When a figure has projection [`Projection::Polar`], series data is
//! interpreted as `(θ, r)` pairs (θ in **radians**) and projected through
//! `(θ, r) → (r·cos θ, r·sin θ)` before applying the Cartesian scales.
/// Project `(θ, r)` (polar, radians) to `(x, y)` (Cartesian).
/// Inverse of [`project`]: Cartesian → `(θ, r)`.
/// Returns `(thetas, rs)` tracing a full circle of radius `r`. Useful
/// for concentric reference rings on a polar plot.