1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 14:18:13 +01:00
dotSCAD/docs/lib2x-hollow_out.md

17 lines
324 B
Markdown
Raw Normal View History

2017-03-15 15:24:14 +08:00
# hollow_out
2017-03-30 14:22:48 +08:00
Hollows out a 2D object.
2017-03-15 15:24:14 +08:00
## Parameters
- `shell_thickness` : The thickness between the exterior and interior.
## Examples
2020-01-28 17:51:20 +08:00
use <hollow_out.scad>;
2017-03-30 14:22:48 +08:00
2017-03-15 15:24:14 +08:00
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)