pub trait ParameterDivision1D {
    type Point;

    fn parameter_division(
        &self,
        range: (f64, f64),
        tol: f64
    ) -> (Vec<f64, Global>, Vec<Self::Point, Global>); }
Expand description

Dividable curve

Required Associated Types§

The curve is in the space of Self::Point.

Required Methods§

Creates the curve division (parameters, corresponding points).

Panics

tol must be more than TOLERANCE.

Implementations on Foreign Types§

Implementors§