honeycomb_kernels/lib.rs
//! # 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;