1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-07-31 20:10:36 +02:00

added hollow_out

This commit is contained in:
Justin Lin
2017-03-15 15:16:38 +08:00
parent 1ab4bd4735
commit 905112349d

18
src/hollow_out.scad Normal file
View File

@@ -0,0 +1,18 @@
/**
* hollow_out.scad
*
* Hollow out a 2D object.
*
* @copyright Justin Lin, 2017
* @license https://opensource.org/licenses/lgpl-3.0.html
*
* @see https://openhome.cc/eGossip/OpenSCAD/lib-hollow_out.html
*
**/
module hollow_out(shell_thickness) {
difference() {
children();
offset(delta = -shell_thickness) children();
}
}