PathF64

Type Alias PathF64 

Source
pub type PathF64 = Path<PointF64>;
Expand description

Path of 2D PointF64

Aliased Type§

pub struct PathF64 {
    pub path: Vec<Point2<f64>>,
}

Fields§

§path: Vec<Point2<f64>>

T can be PointI32/PointF64, etc. (see src/point.rs).

Implementations§

Source§

impl PathF64

Source

pub fn smooth( &self, corner_threshold: f64, outset_ratio: f64, segment_length: f64, max_iterations: usize, ) -> PathF64