Feature-rich library for representing and manipulating angular quantities. Provides strongly-typed structs for six units as well as helper traits for abstracting over the concrete types and doing common operations.
Deg<T>
Rad<T>
Gon<T>
Turns<T>
(1 turn is a full rotation)ArcMinutes<T>
ArcSeconds<T>
toml
[dependencies]
angular-units = "0.2.4"
Converting from Degrees to Radians:
rust
let angle = Deg(45.0);
let radians: Rad<_> = angle.into_angle();
Composing angles from multiple units:
rust
let degrees: Deg<f32> = Deg(50.0_f32) + ArcMinutes(25.0_f32) + Rad(std::f32::consts::PI / 6.0_f32);
Interpolating between two angles:
rust
assert_eq!(Deg(240.0).interpolate(&Deg(180.0), 0.5), Deg(210.0))
Angular-units provides optional serde and approx support for all types by enabling their respective features.