pub trait SweepFace {
    // Required method
    fn sweep_face(
        &self,
        path: impl Into<Vector<3>>,
        cache: &mut SweepCache,
        core: &mut Core
    ) -> Shell;
}
Expand description

§Sweep a Face

See module documentation for more information.

Required Methods§

source

fn sweep_face( &self, path: impl Into<Vector<3>>, cache: &mut SweepCache, core: &mut Core ) -> Shell

§Sweep the Face into a Shell

Object Safety§

This trait is not object safe.

Implementors§