mod.rs
876 B · rust · 23 lines
1/// The base-q slice carry automaton: its digit polynomial, its matrix, its ladder and its sign law.2pub mod carry;3/// The fill, void and exposure counts of an N-dimensional cell.4pub mod census;5/// The growth of a seed pattern into a fractal cell.6pub mod designs;7/// The merges, magic folds, mosaics and perforations of N-dimensional cells.8pub mod geometry;9/// The core, edge and tunnel networks of an N-dimensional cell.10pub mod graph;11/// The N-dimensional cell and its fixed-dimension aliases.12pub mod models;13/// The coloring of an N-dimensional cell by mapping and mode.14pub mod painter;15/// The glyph pushing the text renderers share.16pub mod renderer;17/// The JSON reading the cell serializers share.18pub mod serializer;19/// The random tile drawing the dimensions share.20pub mod tile;21pub use designs::grow;22pub use painter::paint;23pub use renderer::push_glyph;