Genuary2026_MutationBug
Geometrical Bugs
Updated
•2 min read
MothicalBeings
MothicalBeings is coded in Openscad & HydraVideoSynth which created mutated bugs (29th & 30th Prompt of Genuary2026)
Poem
The Bugs have decided to explore
In Groups, to attempt to witness more
More than they ever could on this planet
As they wanted to feed their mind
New habits
New pivots
New paths to add to their timeline
Images




Code
OpenSCAD
// triangle
points = [[0,0], [10,0], [5,10]];
points2 = [[0,0], [17,31], [15,10]];
points3 = [[0,0], [-17,31], [-15,10]];
// Wedge Transformed 1
color("red",0.75)
translate([-10,-10,0])
rotate([50,150,70])
linear_extrude(height = 30,twist = 43, slices = 3,scale = 2.5)
polygon(points);
// Wedge Transformed 2
color("red",0.75)
translate([-10,-110,0])
rotate([250,150,70])
linear_extrude(height = 30,twist = 43, slices = 3,scale = 2.5)
polygon(points);
//Normal Wedge 1
color("red",0.75)
rotate([50,50,170])
linear_extrude(height = 30,scale = 2.5)
polygon(points);
//Normal Wedge 4
color("red",0.75)
rotate([-50,50,170])
linear_extrude(height = 30,scale = 4.5)
polygon(points);
//Normal Wedge 6
color("red",0.275)
rotate([-50,-150,-170])
linear_extrude(height = 30,scale = 14.5)
polygon(points);
//Wedge Transformed 2
color("orange",0.75)
rotate([250,250,170])
linear_extrude(height = 30,twist = 90,slices = 3,scale = 5.5)
polygon(points2);
//Wedge Transformed 3
color("orange",0.175)
rotate([250,250,170])
linear_extrude(height = 30,twist = 90,slices = 3,scale = 9.5)
polygon(points2);
//Normal Wedge 2
color("orange",0.375)
linear_extrude(height = 30,scale = 2.5)
polygon(points2);
//Normal Wedge 3
color("orange",0.1375)
linear_extrude(height = 52,scale = 4.1)
polygon(points2);
//Normal Wedge 4
color("orange",0.75)
linear_extrude(height = 45,scale = 2.5)
polygon(points2);
//Wedge3 Transformed
color("blue",0.75)
linear_extrude(height = 30,twist= 120, slices = 43,scale = 2.5)
polygon(points3);
// Normal Wedge 5
color("blue",0.75)
linear_extrude(height = 30,slices = 3, scale = 4.5)
polygon(points3);
// Normal Wedge 6
color("blue",0.1475)
linear_extrude(height = 30,slices = 3, scale = 6.5)
polygon(points3);
HydraVideoSynth
s0.initScreen()
src(s0).scale(1.24).modulate(s0).modulateRotate(src(s0)).colorama([0.3,0.5,0.7]).out()
s0.initScreen()
src(s0).scale(1.24).modulate(s0).modulateRotate(src(s0),0.4).colorama(0.9).out()




