honeycomb_kernels/remeshing/
mod.rs

1//! remeshing routine components
2//!
3//! This module contains all the code used in usual remeshing loops, among which are:
4//!
5//! - vertex relaxation routines
6//! - cell division routines
7//! - cell fusion routines
8//! - swap-based cell edition routines
9
10mod anchoring;
11mod cut;
12mod relaxation;
13mod swap;
14
15pub use anchoring::{EdgeAnchor, FaceAnchor, VertexAnchor};
16pub use cut::{cut_inner_edge, cut_outer_edge};
17pub use relaxation::move_vertex_to_average;
18pub use swap::{EdgeSwapError, swap_edge};
19
20#[cfg(test)]
21mod tests;