1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-18 06:38:14 +01:00
dotSCAD/docs/lib-hollow_out.md
2017-03-30 14:22:48 +08:00

17 lines
328 B
Markdown

# hollow_out
Hollows out a 2D object.
## Parameters
- `shell_thickness` : The thickness between the exterior and interior.
## Examples
include <hollow_out.scad>;
hollow_out(shell_thickness = 1) circle(r = 3, $fn = 48);
hollow_out(shell_thickness = 1) square([10, 5]);
![hollow_out](images/lib-hollow_out-1.JPG)