pub trait EfdDim<const D: usize>: Sealed {
type Rot: RotHint<D>;
}Expand description
Trait for the dimension U<D> of EFD.
This trait is sealed and cannot be implemented outside of this crate.
Required Associated Types§
sourcetype Rot: RotHint<D>
type Rot: RotHint<D>
Rotation type of the dimension D.
For the memory efficiency, the generic rotation matrix na::Rotation
is not used.
Object Safety§
This trait is not object safe.