//! SVG output for Cartesian geometries — a debugging convenience.
//!
//! Mirrors `boost/geometry/io/svg/svg_mapper.hpp`. Cartesian only: an
//! [`SvgMapper`] accumulates geometries, tracks their combined bounding
//! box, and emits a self-contained `<svg>` document mapping world
//! coordinates to a fixed pixel canvas (y flipped, since SVG y grows
//! downward).
extern crate alloc;
// feature-group: I/O — SVG
// feature-desc: Render geometries to SVG (debugging)
// feature-keep: SvgMapper
pub use SvgMapper;