angulus

crates.io docs.rs

Provides types for angle manipulation.

Features

Example

```rust use angulus::{, units::};

fn main() { let alpha = Angle::DEG90; let beta = Angle::RADFRACPI4; let gamma: Angle = alpha + beta;

// 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),
);

} ```

License

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.