Skip to content

Instantly share code, notes, and snippets.

@GilesBathgate
Created February 13, 2016 20:51
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 GilesBathgate/9288444e90fa9bdad092 to your computer and use it in GitHub Desktop.
Save GilesBathgate/9288444e90fa9bdad092 to your computer and use it in GitHub Desktop.
module main(){
difference(){
cube([100,17,5],true);
for(i=[-2:2])
translate([i*20,0,0])
cube(6,true);
}
}
module mods(){
for(i=[-2:2])
material()
translate([i*20,0,0])cube([20,30,10],true);
}
main();
//mods();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment