shapemaker 1.1.1

An experimental WASM-capable, generative SVG-based video rendering engine that reacts to MIDI or audio data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod canvas;
pub mod color;
pub mod fill;
pub mod filter;
pub mod layer;
pub mod objects;
pub mod transform;

pub use canvas::Canvas;
pub use color::{Color, ColorMapping};
pub use fill::Fill;
pub use filter::{Filter, FilterType};
pub use layer::Layer;
pub use objects::{ColoredObject, LineSegment, Object, ObjectSizes};
pub use transform::{Transformation, TransformationType};