Skip to content

pentagon_tilings.scad

pinkfish edited this page Jun 17, 2026 · 4 revisions

LibFile: pentagon_tilings.scad

This file has all the modules needed to make a variety of penagon tesslations.

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

include <boardgame_toolkit.scad>

File Contents

Function/Module: PentagonTesselationArea()

Description:

Make the pentagon tessellation as a specific x,y in the pattern.

Arguments:

By Position What it does
pentagon_type type of the pentagon, eg: "R1" through "R15"
pentagon_size the size of the pentagon
x x index for the pattern lattice
y y index for the pattern lattice
thickness thickness of the edges of the pattern

Example 1:

PentagonTesselationArea() Example 1
include <boardgame_toolkit.scad>
PentagonTesselationArea(pentagon_type="R1", pentagon_size = 30, width = 100, length = 100, thickness = 2);

Function/Module: PentagonTesselation()

Description:

Make the pentagon tessellation as a specific x,y in the pattern.

Arguments:

By Position What it does
pentagon_type type of the pentagon, eg: "R1" through "R15"
pentagon_size the size of the pentagon
x x index for the pattern lattice
y y index for the pattern lattice
thickness thickness of the edges of the pattern

Example 1:

PentagonTesselation() Example 1
include <boardgame_toolkit.scad>
PentagonTesselation(pentagon_type="R1", pentagon_size = 30, x = 0, y = 0, thickness = 2);

Clone this wiki locally