Created
May 30, 2016 16:38
upper cube from lad-pad
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//upper-cube.scad | |
INCL = 3.2; // inner cube length | |
INCW = 2; // inner cube width | |
INCH = 2; // inner cube height | |
THIKNESS = 0.9; | |
OCL = INCL + THIKNESS * 2 ; // outer cube length | |
OCW = INCW + THIKNESS * 2 ; // outer cube width | |
OCH = 2; // outer cube height | |
module upp_cube() { | |
difference() { | |
cube([OCW, OCL, OCH], center= true); | |
cube([ INCW, INCL, INCH + 1], center= true); | |
} | |
} | |
upp_cube(); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment