Last active
January 25, 2020 12:04
-
-
Save buendias-dev/0703b81c95dc28b4db3babf5460e61fb to your computer and use it in GitHub Desktop.
OpenSCAD
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
// Draw a cube with a rounded base at (0,0), width = 30, length = 30, height = 25 | |
translate([5, 5]) | |
minkowski() { | |
cube([20, 20, 10]); | |
cylinder(r = 5, h = 5); | |
}; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment