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,21 @@
include <BOSL2/std.scad>
use <../Color.scad>
use <Race-Box.scad>
difference () {
raceBox(16, "Trolle", 10);
translate([ 5.5, 12.25, 4 ]) cuboid([ 28, 28, 15 ], anchor = [ -1, -1, -1 ]);
translate([ 38.5, 12.25, 2 ]) cuboid([ 28, 28, 15 ], anchor = [ -1, -1, -1 ]);
translate([ 71.5, 12.25, 2 ]) cuboid([ 28, 28, 15 ], anchor = [ -1, -1, -1 ]);
translate([ 104.5, 12.25, 4 ]) cuboid([ 28, 28, 15 ], anchor = [ -1, -1, -1 ]);
translate([ 5.5, 7.25, 8 ]) cuboid([ 38, 38, 9 ], anchor = [ -1, -1, -1 ]);
translate([ 50, 7.25, 8 ]) cuboid([ 38, 38, 11 ], anchor = [ -1, -1, -1 ]);
translate([ 94.5, 7.25, 10 ]) cuboid([ 38, 38, 9 ], anchor = [ -1, -1, -1 ]);
translate([ 19.5, 26.25, -1 ]) cylinder(h = 16, r = 10, center = false);
translate([ 52.5, 26.25, -1 ]) cylinder(h = 16, r = 10, center = false);
translate([ 85.5, 26.25, -1 ]) cylinder(h = 16, r = 10, center = false);
translate([ 118.5, 26.25, -1 ]) cylinder(h = 16, r = 10, center = false);
}