pub trait Primitive<S, V>where
S: Field,
V: VectorSpace<S>,{
// Required methods
fn translate(self, displacement: V) -> Self;
fn scale(self, scale: NonZero<S>) -> Self;
}
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.