1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-01 10:42:57 +02:00

added box_extrude

This commit is contained in:
Justin Lin
2017-03-26 16:51:41 +08:00
parent a96fc7cf17
commit 0cbdbc11f1
5 changed files with 52 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

21
docs/lib-box_extrude.md Normal file
View File

@@ -0,0 +1,21 @@
# box_extrude
Create a box (container) from a 2D object.
## Parameters
- `height` : The box height.
- `shell_thickness` : The thickness between the exterior and interior..
## Examples
box_extrude(height = 30, shell_thickness = 2)
circle(r = 30);
![box_extrude](images/lib-box_extrude-1.JPG)
box_extrude(height = 30, shell_thickness = 2)
text("XD", size = 40, font = "Cooper Black");
![box_extrude](images/lib-box_extrude-2.JPG)