//! Scalar quantities: dimensioned newtypes around `f64`.
//!
//! These are the foundational "leaf" types of the wrapper. Each is a
//! finite, validated value with type-safe constructors and unit-aware
//! accessors. Heavier types (`Vector`, `Position`, `Frame`, ...) build on
//! these.
pub use Angle;
pub use Coordinate;
pub use Interval;
pub use Pressure;
pub use ScalarVelocity;
pub use Temperature;
pub use TimeAngle;