logo
pub trait IntoTrigons: Polygonal {
    type Output: IntoIterator<Item = Trigon<Self::Vertex>>;

    fn into_trigons(self) -> Self::Output;
}

Required Associated Types

Required Methods

Implementors