pub trait Scale { // Required methods fn scale(&self) -> f32; fn set_scale(&mut self, value: f32); }
Represents an object that can be scaled.
Returns the scale of the object.
Sets the scale of the object.