Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ednisley/1758c9d10821119f46084fa1804d3561 to your computer and use it in GitHub Desktop.
Save ednisley/1758c9d10821119f46084fa1804d3561 to your computer and use it in GitHub Desktop.
OpenSCAD Source Code: Kenmore Progressive Vacuum Cleaner Tool Adapters - reinforced Dust Brush adapter
//-------------------
// eBay horsehair dusting brush
// Hacked for 3/4" Schedule 40 PVC stiffening tube
module DustBrush() {
union() {
translate([0,0,40.0])
rotate([180,0,0])
difference() {
union() {
cylinder(d1=EndStop[OD1],d2=31.8,h=10.0);
translate([0,0,10.0 - Protrusion])
cylinder(d1=32.0,d2=30.0,h=30.0 + Protrusion);
}
translate([0,0,-Protrusion])
cylinder(d1=26.0,d2=24.0,h=100);
translate([0,0,-Protrusion]) // 3/4 inch Sch 40 PVC
PolyCyl(27.0,100);
}
translate([0,0,40.0 - Protrusion])
MaleFitting();
}
}
@ednisley
Copy link
Author

More details on my blog at http://wp.me/poZKh-6jy

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment