pub trait ScaleTransform {
// Required method
fn scale(&mut self, scale: DVec3) -> &mut Self;
}Expand description
Scaling operations.
This trait is automatically implemented for DVec3 and [T] where T: ScaleTransform.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.