Provides types for angle manipulation.
serde
: Serialization/deserialization support via serde.```rust use angulus::{, units::};
fn main() {
let alpha = Angle::DEG90;
let beta = Angle::RADFRACPI4;
let gamma: Angle
// in radians : 1.5707964 rad + 0.7853982 rad = 2.3561945 rad
println!(
"in radians : {} + {} = {}",
Radians(alpha),
Radians(beta),
Radians(gamma),
);
// in degrees : 90° + 45° = 135°
println!(
"in degrees : {} + {} = {}",
Degrees(alpha),
Degrees(beta),
Degrees(gamma),
);
} ```
Licensed under either of the following, at your choice:
Unless explicitly stated otherwise, any contribution intentionally submitted for inclusion in this crate, as defined in the Apache-2.0 license, shall be dual-licensed as above, without any additional terms or conditions.