honeycomb_core/cmap/dim2/
mod.rs

1//! [`CMap2`] code
2//!
3//! This module contains code for the 2D implementation of combinatorial maps: [`CMap2`].
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 [`CMap2`].
18const CMAP2_BETA: usize = 3;
19
20#[allow(unused_mut)]
21#[cfg(test)]
22mod tests;