pub trait OutlineStroke {
    fn outline_stroke(
        &self,
        stroke_weight: f64
    ) -> Result<MultiPolygon<f64>, Box<dyn Error>>; }
Expand description

Useful for converting a line into a polygon as if it were stroked. Only supports round caps and joins for now.

Required Methods

Implementations on Foreign Types

Implementors