pub trait IntoPoints<C: CoordinateConcept> {
type Point: PointConcept<C>;
type PointIter: Iterator<Item = Self::Point>;
// Required method
fn into_points(self) -> Self::PointIter;
}Expand description
Loop over points/vertices.
Required Associated Types§
Sourcetype Point: PointConcept<C>
type Point: PointConcept<C>
Type of the points.
Required Methods§
Sourcefn into_points(self) -> Self::PointIter
fn into_points(self) -> Self::PointIter
Iterate over points.