Nomad dock: Difference between revisions

From Wildsong
Jump to navigationJump to search
Brian Wilson (talk | contribs)
m Created page with 'thickness = 5; module case(w,h,d) { difference() { cube(size=[w+thickness, h+thickness, d], center=true); translate([0,0,thickness]) cube(size=[w, h, d], center=true); } …'
 
Brian Wilson (talk | contribs)
mNo edit summary
 
Line 1: Line 1:
thickness = 5;
open top box
module case(w,h,d) {
 
thickness = 5;
module case(w,h,d) {
difference() {
difference() {
cube(size=[w+thickness, h+thickness, d], center=true);
cube(size=[w+thickness, h+thickness, d], center=true);
Line 6: Line 8:
cube(size=[w, h, d], center=true);
cube(size=[w, h, d], center=true);
}
}
}
}
 
case(300,400,25);
case(300,400,25);

Latest revision as of 00:49, 20 August 2013

open top box

thickness = 5;
module case(w,h,d) {

difference() { cube(size=[w+thickness, h+thickness, d], center=true); translate([0,0,thickness]) cube(size=[w, h, d], center=true); }

}

case(300,400,25);