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_asin_angle(c: &mut Criterion) {
    c.bench_function("asin_angle", |b| b.iter(|| Angle::asin(black_box(1.1))));
}

fn bench_asin_builtin(c: &mut Criterion) {
    c.bench_function("asin_buitin", |b| b.iter(|| f64::asin(black_box(1.1))));
}

criterion_group!(benches, bench_asin_angle, bench_asin_builtin);
criterion_main!(benches);