lib.rs
840 B · rust · 28 lines
1#![doc = include_str!("../README.md")]2#![deny(missing_docs)]34/// The canvas and its anti-aliased primitives, and the frame a figure lays out in.5pub mod board;6/// The scalar fields painted through a ramp.7pub mod field;8/// The animated gif: frames over one palette, written from scratch.9pub mod gif;10/// The square lattice, the design painter and the Kronecker masks.11pub mod grid;12/// The triangle meshes of the hexagon world.13pub mod hex;14/// The palette of the house and the ramps built from it.15pub mod ink;16/// The isometric cube faces.17pub mod iso;18/// The one way a figure leaves the press.19pub mod out;20/// The plain marks: bars, dots, rings, staircases, curves and a bare axis.21pub mod plot;2223pub use board::{Board, Frame};24pub use gif::Reel;25pub use grid::Grid;26pub use ink::Ramp;27pub use mrlycore::Color;28pub use out::save;