Skip to content

Instantly share code, notes, and snippets.

@buhii
Created May 4, 2014 06:48
Show Gist options
  • Save buhii/6c5f9f9d87cfc495df2b to your computer and use it in GitHub Desktop.
Save buhii/6c5f9f9d87cfc495df2b to your computer and use it in GitHub Desktop.
// Satoh's shoe rack OpenSCAD file
shoe_rack_height = 780 - 200;
support_width = 45;
support_thick = 15;
module shoe_rack_support(x, y) {
translate([x, y, 0]) {
cube([support_width, support_thick, shoe_rack_height]);
}
}
module shoe_rack_board(h) {
translate([0, 0, h]) {
cube([300, 600, 9]);
}
}
// main
translate([-150, -300, -430]) {
shoe_rack_support(0, -support_thick);
shoe_rack_support(300 - support_width, -support_thick);
shoe_rack_support(0, 600);
shoe_rack_support(300 - support_width, 600);
shoe_rack_board(20);
shoe_rack_board(350);
shoe_rack_board(580 - 20 - 9);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment