motion-canvas-rs 0.1.2

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
14
15
16
pub mod animation;
pub mod easings;
pub mod font;
pub mod nodes;
pub mod project;
pub mod scene;
#[cfg(feature = "math")]
pub mod typst_support;

pub use animation::*;
pub use easings::*;
pub use font::*;
pub use glam::Vec2;
pub use nodes::*;
pub use project::*;
pub use scene::*;