motion-canvas-rs 0.1.9

A high-performance vector animation engine inspired by Motion Canvas, built on Vello and Typst.
Documentation
pub mod animation;
pub mod easings;
pub mod font {
    pub use crate::engine::util::font_manager::*;
}
pub mod nodes;
pub mod project;
pub mod scene;
#[cfg(feature = "math")]
pub mod typst_support;
pub mod util;

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