motion-canvas-rs 0.2.1

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
//! Core animation engine logic.
//!
//! This module contains the fundamental traits and structures that drive the
//! animation system, including signals, tweening, timelines, and scenes.

pub mod animation;
pub mod easings;
pub mod scene;
pub mod timeline;

pub use animation::*;
pub use easings::*;
pub use scene::*;
pub use timeline::*;