motion-canvas-rs 0.2.3

A high-performance vector animation engine inspired by Motion Canvas, built on Vello and Typst.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod circle;
pub mod grid;
pub mod line;
pub mod path;
pub mod polygon;
pub mod rect;

pub use circle::Circle;
pub use grid::GridNode;
pub use line::Line;
pub use path::{PathData, PathNode as Path, PathNode};
pub use polygon::Polygon;
pub use rect::Rect;