rustmotion 0.5.0

A CLI tool that renders motion design videos from JSON scenarios. No browser, no Node.js — just a single Rust binary.
1
2
3
4
5
6
/// Trait for components that clip their content to their bounds.
pub trait Clipped {
    fn clip(&self) -> bool {
        false
    }
}