Skip to main content

rustmotion_core/traits/
clipped.rs

1/// Trait for components that clip their content to their bounds.
2pub trait Clipped {
3    fn clip(&self) -> bool {
4        false
5    }
6}