// ~/cartan/cartan-remesh/src/lib.rs
//! # cartan-remesh
//!
//! Adaptive remeshing primitives for triangle meshes on Riemannian manifolds.
//!
//! All operations are generic over `M: Manifold` and operate on
//! `&mut Mesh<M, 3, 2>`. Every mutation is logged in a [`RemeshLog`] so that
//! downstream solvers can interpolate fields across topology changes.
pub use RemeshConfig;
pub use adaptive_remesh;
pub use needs_remesh;
pub use RemeshError;
pub use ;
pub use ;
pub use ;