mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-01-17 06:08:31 +01:00
876 B
876 B
box_extrude
Creates a box (container) from a 2D object.
Parameters
height
: The box height.shell_thickness
: The thickness between the exterior and interior.offset_mode
:"delta"
(default) or"r"
. See offset for details.chamfer
: Defaultfalse
. See offset for details.twist
,slices
,scale
: The same aslinear_extrude
. Since: 2.1.
Examples
use <box_extrude.scad>
box_extrude(height = 30, shell_thickness = 2)
circle(r = 30);
use <box_extrude.scad>
box_extrude(height = 30, shell_thickness = 2)
text("XD", size = 40, font = "Cooper Black");