Trait truck_geometry::base::Cut

source ·
pub trait Cut: BoundedCurve {
    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§