lib.rs

743 B · rust · 25 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 square lattice, the design painter and the Kronecker masks.9pub mod grid;10/// The triangle meshes of the hexagon world.11pub mod hex;12/// The palette of the house and the ramps built from it.13pub mod ink;14/// The isometric cube faces.15pub mod iso;16/// The one way a figure leaves the press.17pub mod out;18/// The plain marks: bars, dots, rings, staircases, curves and a bare axis.19pub mod plot;2021pub use board::{Board, Frame};22pub use grid::Grid;23pub use ink::Ramp;24pub use mrlyrs::core::Color;25pub use out::save;