mod.rs

919 B · rust · 22 lines

1#![doc = include_str!("README.md")]23/// The universe of design codes: corners, symmetries and their counts.4pub mod bang;5/// The dimension-generic cell and the pipeline the fixed dimensions share.6pub mod dim;7/// The closed-form counts: classic sequences, fills and surfaces without rendering.8pub mod formulas;9/// The mrly names: one canonical JSON object for every mathematical thing.10pub mod name;11/// The residue rules that mark a hypercube's cells.12pub mod rules;13/// The exact crop machinery: rational shapes classified cell by cell, no floats.14pub mod shape;15/// The hexagon world: cubes flattened to triangle-meshed hexes.16pub mod six;17/// The 3d scene kit: the vector and the packed wire format.18pub mod space;19/// The cube pipeline: designs, tiles, graphs and renderings in three dimensions.20pub mod three;21/// The flat-cell pipeline: designs, tiles, graphs and renderings in two dimensions.22pub mod two;