integer_angles 0.2.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
use criterion::{black_box, criterion_group, criterion_main, Criterion};
use integer_angles::Angle;

fn bench_acos_angle(c: &mut Criterion) {
    c.bench_function("acos_angle", |b| b.iter(|| Angle::acos(black_box(1.1))));
}

fn bench_acos_builtin(c: &mut Criterion) {
    c.bench_function("acos_buitin", |b| b.iter(|| f64::acos(black_box(1.1))));
}

criterion_group!(benches, bench_acos_angle, bench_acos_builtin);
criterion_main!(benches);