Type Alias visioncortex::PathF64

source ·
pub type PathF64 = Path<PointF64>;
Expand description

Path of 2D PointF64

Aliased Type§

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