Skip to content

no_lid.scad

pinkfish edited this page Nov 6, 2025 · 8 revisions

LibFile: no_lid.scad

The boxex which have no lids with them.

To use, add the following lines to the beginning of your file:

include <boardgame_toolkit.scad>

File Contents

Module: MakeBoxWithNoLid()

Description:

Makes a box with no lid, useful for spacers and other things in games.

Arguments:

By Position What it does
width width of the box (outside width)
length length of the box (outside length)
wall_thickness thickness of the walls (default default_wall_thickness)
material_colour the material colour to use (default default_material_colour)

Example 1:

MakeBoxWithNoLid() Example 1
include <boardgame_toolkit.scad>
MakeBoxWithNoLid(width=100, length=50, height=20);



Example 2:

MakeBoxWithNoLid() Example 2
include <boardgame_toolkit.scad>
MakeBoxWithNoLid(width=100, length=50, height=20, hollow=true);

Clone this wiki locally