honeycomb_kernels/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//! # honeycomb-kernels
//!
//! This crate implements usual meshing algorithms using combinatorial maps as the underlying mesh
//! representation structure.
//!
//! [UG]:https://lihpc-computational-geometry.github.io/honeycomb/
//!

// ------ CUSTOM LINTS

#![warn(missing_docs)]
#![warn(clippy::pedantic)]
#![allow(clippy::similar_names)]
#![allow(clippy::module_name_repetitions)]

// ------ MODULE DECLARATIONS

pub mod grisubal;
pub mod splits;
pub mod triangulation;