Genuary2026_RedBoxes
Boxes, Once Again
Updated
•2 min read
OverloadedBoxes
OverLoadedBoxes takes Prompt 1: “1 Color 1 Shape”, , and Prompt 12: Only boxes of Genuary2026. Coded in Openscad and added filter.
Poetry
Entities
made of Boxes
Wandering around acting as this Stage
Is theirs
Within their tiers
Ignoring the others that are there
For this is their space
For their paths in their pace
For the Boxes are of one shade
For the Boxes are only Boxes
Images





Code
OpenSCAD
for ( i = [0 : 14] ){
translate([-40,i * 7,4*i]) rotate ([14*i,40*i,20*i]) color("red", 1.0/i) cube(i);
}
for ( i = [0 : 14] ){
translate([-40,i * 7,4*i]) rotate ([-14*i,40*i,-20*i]) color("red", 1.0/i) cube(i);
}
for ( i = [0 : 14] ){
translate([-40,-i * 7,4*i]) rotate ([14*i,40*i,20*i]) color("red", 1.0/i) cube(i);
}
for ( i = [0 : 14] ){
translate([-40,-i * 7,4*i]) rotate ([14*i,-40*i,20*i]) color("red", 1.0/i) cube(i);
}
for ( i = [0 : 14] ){
translate([-40,-i * 7,-4*i]) rotate ([14*i,40*i,20*i]) color("red", 1.0/i) cube(i);
}
for ( i = [0 : 14] ){
translate([-40,-i * 7,-4*i]) rotate ([-14*i,40*i,20*i]) color("red", 1.0/i) cube(i);
}
for ( i = [0 : 14] ){
translate([-40,i * 7,-4*i]) rotate ([14*i,40*i,20*i]) color("red", 1.0/i) cube(i);
}
for ( i = [0 : 14] ){
translate([-40,i * 7,-4*i]) rotate ([14*i,-40*i,20*i]) color("red", 1.0/i) cube(i);
}




