pub type StrError = &'static str;
pub mod geometry;
pub mod graph;
pub mod integ;
pub mod mesh;
pub mod prelude;
pub mod recovery;
pub mod shapes;
pub mod util;
#[cfg(doctest)]
mod test_readme {
macro_rules! external_doc_test {
($x:expr) => {
#[doc = $x]
extern "C" {}
};
}
external_doc_test!(include_str!("../README.md"));
}