rustmotion-core 0.6.0

Core types, traits, and rendering utilities for rustmotion
1
2
3
4
5
6
/// Trait for components that clip their content to their bounds.
pub trait Clipped {
    fn clip(&self) -> bool {
        false
    }
}