motion-canvas-rs 0.2.4

A high-performance vector animation engine inspired by Motion Canvas, built on Vello and Typst.
Documentation
//! 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 filters;
pub mod masks;
pub mod scene;
pub mod timeline;

#[cfg(feature = "physics")]
pub mod physics;

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

#[cfg(feature = "physics")]
pub use physics::*;