pub trait Sweep {
type Swept;
fn sweep(self, path: impl Into<Vector<3>>, store: &Stores) -> Self::Swept;
}Expand description
Sweep an object along a path to create another object
pub trait Sweep {
type Swept;
fn sweep(self, path: impl Into<Vector<3>>, store: &Stores) -> Self::Swept;
}Sweep an object along a path to create another object