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

pub trait Cut: ParametricCurve {
    fn cut(&mut self, t: f64) -> Self;
}
Expand description

Cuts one curve into two curves.

Required methods

Cuts one curve into two curves. Assigns the former curve to self and returns the later curve.

Implementors