pub trait ParameterDivision2D {
    fn parameter_division(
        &self,
        range: ((f64, f64), (f64, f64)),
        tol: f64
    ) -> (Vec<f64, Global>, Vec<f64, Global>); }
Expand description

Dividable surface

Required Methods§

Creates the surface division

Panics

tol must be more than TOLERANCE.

Implementations on Foreign Types§

Implementors§