integer_angles 0.1.0

Do math with angles, but represent them as integers to avoid using floats.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use angles::Angle;
use nalgebra::RealField;
use criterion::{black_box, criterion_group, criterion_main, Criterion};


fn bench_tan_angle(c: &mut Criterion) {
    c.bench_function("tan_angle", |b| b.iter(|| black_box(Angle::pi()).tan::<f64>()));
}

fn bench_tan_builtin(c: &mut Criterion) {
    c.bench_function("tan_buitin", |b| b.iter(|| black_box(f64::pi()).tan()));
}

criterion_group!(benches, bench_tan_angle, bench_tan_builtin);
criterion_main!(benches);