pub trait IntoSubdivisions: Polygonal {
type Output: IntoIterator<Item = Self>;
fn into_subdivisions(self) -> Self::Output;
}
pub trait IntoSubdivisions: Polygonal {
type Output: IntoIterator<Item = Self>;
fn into_subdivisions(self) -> Self::Output;
}