mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-06 14:56:47 +02:00
added hollow_out
This commit is contained in:
18
src/hollow_out.scad
Normal file
18
src/hollow_out.scad
Normal 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();
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user