pub trait AffineSpace<S: Field>: Point<Self::Translation> {
type Translation: VectorSpace<S> + GroupAction<Self>;
}Expand description
Space of Points (positions) and Vectors (displacements)
Required Associated Types§
type Translation: VectorSpace<S> + GroupAction<Self>
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.