Small Worlds - Races

This commit is contained in:
2026-05-20 11:22:54 +02:00
parent 17f110f2bd
commit 7ed36ef273
22 changed files with 611 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
include <BOSL2/std.scad>
use <../Color.scad>
use <Race-Box.scad>
difference () {
raceBox(12, "Untergegangene Stämme", 6);
translate([ 5.5, 12.25, 4 ]) cuboid([ 28, 28, 11 ], anchor = [ -1, -1, -1 ]);
translate([ 38.5, 12.25, 2 ]) cuboid([ 28, 28, 11 ], anchor = [ -1, -1, -1 ]);
translate([ 71.5, 12.25, 2 ]) cuboid([ 28, 28, 11 ], anchor = [ -1, -1, -1 ]);
translate([ 104.5, 12.25, 4 ]) cuboid([ 28, 28, 11 ], anchor = [ -1, -1, -1 ]);
translate([ 19.5, 26.25, -1 ]) cylinder(h = 14, r = 10, center = false);
translate([ 52.5, 26.25, -1 ]) cylinder(h = 14, r = 10, center = false);
translate([ 85.5, 26.25, -1 ]) cylinder(h = 14, r = 10, center = false);
translate([ 118.5, 26.25, -1 ]) cylinder(h = 14, r = 10, center = false);
}