honeycomb-kernels 0.11.0

Meshing kernel implementations using combinatorial maps
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Cell insertion functions
//!
//! This module contains implementations of cell insertion methods. Due to definition issues, we
//! only implement insertion of `N-1`-cell into `N`-cell, for example vertex (0-cell) in edge
//! (1-cell).

mod vertices;

pub use vertices::{VertexInsertionError, insert_vertex_on_edge, insert_vertices_on_edge};

#[cfg(test)]
mod tests;