pub trait ToLinkedPolygons {
    type Error;

    fn to_linked_polygons(
        &self,
        smoothen: bool
    ) -> Result<Vec<Polygon<f64>>, Self::Error>; }
Expand description

join hexagon polygons to larger polygons where hexagons are touching each other

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors