//! Sweeping objects along a path to create new objects
modcurve;modedge;modface;modsketch;modvertex;usefj_math::Vector;usecrate::stores::Stores;/// Sweep an object along a path to create another object
pubtraitSweep{/// The object that is created by sweeping the implementing object
typeSwept;/// Sweep the object along the given path
fnsweep(self, path: impl Into<Vector<3>>, store:&Stores)->Self::Swept;}