pub trait Sweep {
type Swept;
fn sweep(
self,
path: impl Into<Path>,
tolerance: impl Into<Tolerance>,
color: Color
) -> Self::Swept;
}Expand description
Sweep an object along a path to create another object