pub trait Translate<T> {
// Required method
fn translate(&self, v: Vector<T>) -> Self;
}
Expand description
Translate the geometrical object by a vector.
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.