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
14
15
16
17
18
//! Animation lifecycle and reactive property system.
//!
//! This module provides the core traits for nodes and animations, the signal-based
//! property system, and control flow primitives for complex animations.

pub mod base;
pub mod binding;
pub mod enum_defs;
pub mod flow;
pub mod paint;
pub mod tween;

pub use base::*;
pub use binding::*;
pub use enum_defs::*;
pub use flow::*;
pub use paint::*;
pub use tween::*;