motionloom 0.1.0

MotionLoom DSL parser and renderer for video effects, scene graphs, motion graphics, and world graphs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Scene spatial model.
//!
//! Owns transforms, coordinate spaces, Camera2D, bounds, layout, anchors,
//! constraints, and world/screen mapping. Spatial code maps coordinates; it
//! should not perform image processing.

mod camera;
mod deform;
mod transform;

pub(crate) use camera::*;
pub(crate) use deform::*;
pub(crate) use transform::*;