Created
July 20, 2020 01:23
-
-
Save chand1012/ec0f3d451980feb282228f2c0ca1b242 to your computer and use it in GitHub Desktop.
This is my lack table extender.
This file contains hidden or 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
// in mm | |
height = 180; | |
leg_width = 55.88;// this is the length of width of the table leg | |
union() { | |
translate([0, 0, height*0.6]) { | |
difference() { | |
cube([leg_width, leg_width, 38.1], center=true); | |
cube([leg_width-6.35, leg_width-6.35, 38.25], center=true); | |
}; | |
}; | |
cube([leg_width, leg_width, height], center=true); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment