[][src]Trait flo_curves::bezier::BezierCurve2D

pub trait BezierCurve2D: BezierCurve {
    fn characteristics(&self) -> CurveCategory;
fn features(&self, accuracy: f64) -> CurveFeatures; }

Functions supported on 2D bezier curves

Required methods

fn characteristics(&self) -> CurveCategory

Finds the characteristics of this curve: for example if it has a loop or is a line

fn features(&self, accuracy: f64) -> CurveFeatures

Finds the features of this curve (the characteristics and where they occur on the curve)

Loading content...

Implementors

impl<T: BezierCurve> BezierCurve2D for T where
    T::Point: Coordinate + Coordinate2D
[src]

Loading content...