1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 22:28:16 +01:00
dotSCAD/docs/lib-box_extrude.md
2017-04-26 13:50:23 +08:00

806 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 : Default false. See offset for details.

Examples

include <box_extrude.scad>;

box_extrude(height = 30, shell_thickness = 2) 
    circle(r = 30);

box_extrude

include <box_extrude.scad>;

box_extrude(height = 30, shell_thickness = 2) 
    text("XD", size = 40, font = "Cooper Black");

box_extrude