honeycomb_core/cmap/dim3/
mod.rs

1//! [`CMap3`] code
2//!
3//! This module contains code for the 3D implementation of combinatorial maps: [`CMap3`].
4//!
5//! The definitions are re-exported, direct interaction with this module
6//! should be minimal, if existing at all.
7
8pub mod basic_ops;
9pub mod embed;
10pub mod links;
11pub mod orbits;
12pub mod serialize;
13pub mod sews;
14pub mod structure;
15pub mod utils;
16
17/// Number of beta functions defined for [`CMap3`].
18const CMAP3_BETA: usize = 4;
19
20#[cfg(test)]
21mod tests;