Skip to content

pentagons.scad

pinkfish edited this page Jun 26, 2026 · 3 revisions

LibFile: pentagons.scad

This file has all the modules needed to make a sheep tesselation.

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

include <boardgame_toolkit.scad>

File Contents

Function/Module: SheepTesselation()

Description:

Make a sheep tesselation.

Arguments:

By Position What it does
size length of the sheep
x x location
y y location
thickness thickness of the sheep

Example 1:

SheepTesselation() Example 1
include <boardgame_toolkit.scad>
SheepTesselation(size=20, x=0, y=0, thickness=2);




Module: SheepTesselationArea()

Description:

Make a sheep tesselation area.

Arguments:

By Position What it does
size length of the sheep
width width of the space
length length of the space
thickness thickness of the sheep

Example 1:

SheepTesselationArea() Example 1
include <boardgame_toolkit.scad>
SheepTesselationArea(size=20, width=200, length=100, thickness=1);

Clone this wiki locally