Skip to content

Instantly share code, notes, and snippets.

@beanz
Created March 19, 2014 08:06
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 beanz/9637365 to your computer and use it in GitHub Desktop.
Save beanz/9637365 to your computer and use it in GitHub Desktop.
Simple spacer for rostock extruder
include <config.scad>;
use <metric-cerberus.scad>;
hole = 45;
$fn=12;
difference() {
union() {
cube([hole+5,30,8], center = true);
for (i=[-1,1]) {
translate([i*hole/2,0,0]) cube([10,46,8], center = true);
}
}
translate([-hole, 0, 22])
rotate([0, 90, 0]) extrusion4040_no_hole(h = hole*2);
for (i=[-1,1]) {
translate([i*hole/2,0,0]) cylinder(r = 5/2, h = 20, center = true);
hull() {
translate([-hole/3,i*8,0]) cylinder(r = 3, h = 20, center = true);
translate([+hole/3,i*8,0]) cylinder(r = 3, h = 20, center = true);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment