WedgeFulCreatures
For my 17th sketch of Mathober2025 coded in Openscad, WedgefulCreatures takes the 25th prompt of “Wedges” and makes creatures out of them.
Poetry
Wedges with slightly more
Wedges with slightly less
Similar in the creation process
But differences can be seen as the time soars
As the creatures form their progress
Image




Code
points = [[0,0], [10,0], [5,10]];
points2 = [[0,0], [17,31], [15,10]];
points3 = [[0,0], [-17,31], [-15,10]];
color("red",0.75)
translate([-10,-10,0])
rotate([50,50,70])
linear_extrude(height = 30,twist = 43, slices = 3,scale = 2.5)
polygon(points);
color("red",0.75)
rotate([50,50,70])
linear_extrude(height = 30,scale = 2.5)
polygon(points);
color("orange",0.75)
linear_extrude(height = 30,twist = 120,slices = 3,scale = 2.5)
polygon(points2);
color("orange",0.75)
linear_extrude(height = 30,scale = 2.5)
polygon(points2);
color("blue",0.75)
linear_extrude(height = 30,twist= 120, slices = 43,scale = 2.5)
polygon(points3);
color("blue",0.75)
linear_extrude(height = 30,scale = 2.5)
polygon(points3);