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
12
13
use hexglobe::projection::globe::ExactGlobe;

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

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