hexglobe 0.1.3

Library to generate hexagonal tessellations of a sphere quickly and accurately.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use hexglobe::subdivision::subdivided_triangle::SubdividedTriangle;

fn main() {
    // Run registered benchmarks.
    divan::main();
}

#[divan::bench(consts = [1, 2, 4, 8, 16, 32, 64])]
fn subdivision<const N: u32>() {
    SubdividedTriangle::<N>::new();
}