pub trait Vector3DIteratorExt<S: Scalar, V: Vector3D<S = S>>: Iterator<Item = V> {
// Provided method
fn normal(self) -> Self::Item
where Self: Sized + ExactSizeIterator + Clone { ... }
}Expand description
Additional methods for vector iterators.