mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-09-24 21:41:33 +02:00
20 lines
348 B
Markdown
20 lines
348 B
Markdown
# hollow_out
|
|
|
|
Hollows out a 2D object.
|
|
|
|
## Parameters
|
|
|
|
- `shell_thickness` : The thickness between the exterior and interior.
|
|
|
|
## Examples
|
|
|
|
use <hollow_out.scad>
|
|
|
|
hollow_out(shell_thickness = 1)
|
|
circle(r = 3, $fn = 48);
|
|
|
|
hollow_out(shell_thickness = 1)
|
|
square([10, 5]);
|
|
|
|

|