chiark / gitweb /
axlepin break out Washer from filamentspool
[reprap-play.git] / axlepin.scad
index d399092012a805d43b764f1a571f3989ea294199..b684f047ca3cd31268f9c0518914f0b6dc15d1e4 100644 (file)
@@ -14,3 +14,10 @@ module AxlePin(axlerad, pinlen, holerad=2, tabthick=5, slop=0.5){
     translate([-50,-50,0]) cube([100,100,50]);
   }
 }
+
+module Washer(axlerad, washerrad, thick=1.2, slop=0.5){
+  difference(){
+    cylinder(h=thick, r=washerrad);
+    translate([0,0,-1]) cylinder(h=thick+2, r=axlerad+slop);
+  }
+}