Trait truck_modeling::base::traits::ParameterDivision1D[][src]

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

Associated Types

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

Required methods

Creates the curve division (prameters, corresponding points).

Panics

tol must be more than TOLERANCE.

Implementations on Foreign Types

Implementors