pub trait ToPolygon {
    type Error;

    fn to_polygon(&self) -> Result<Polygon<f64>, Self::Error>;
}

Required Associated Types

Required Methods

Implementors