1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! Static PNG rendering for sketches produced by KCL execution. mod api; mod extract; mod model; mod render; mod sampling; mod scene; mod types; #[cfg(test)] mod tests; pub(crate) use api::render_sketch_png; pub use types::SketchVisualizationError;