lib.rs
610 B · rust · 13 lines
1#![doc = include_str!("../README.md")]2#![deny(missing_docs)]34/// The atlas: the census of mrlylife over presets of seeds, masks and rules, every frame read as a design.5pub mod atlas;6/// The sequence registry: every measure of every design as a sequence, the curated records, and the page they render.7pub mod ledger;8/// The moire fields layered from sampled designs.9pub mod moire;10/// The sequence press: the integers a design's digit rule keeps, weighed all at once.11pub mod press;12/// The nodes of a roulette: where the curves a wheel's pencils draw cross themselves and one another.13pub mod roulette;