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