MinaCoding_MochiMochi
Code and Food
Updated
•1 min read
StackedPastry
For MinaCoding2026 Day 26: Mochi Mochi, StackedPastry coded in Openscad is a chewy stacked pastry.
Poetry
How do you plan on eating this?
What flavors come into mind?
What combinations are in the stack?
What kind of sweetness do they pack?
Is it Vanilla that is inside?
is it tastebud fit?
Images
Code
color("red",0.78)
rotate_extrude()
translate([50,-10,50])
circle(30);
color("orange",0.78)
rotate_extrude(convexity = 3)
translate([-50,-10,50])
circle(30);
color("gold",1.0)
rotate_extrude()
translate([-50,10,50])
circle(20);
color("green",0.70)
rotate_extrude()
translate([50,-50,-50])
circle(20);
color("gold",0.70)
rotate_extrude()
translate([50,-50,-50])
circle(20);
linear_extrude(height = 20, center = true, convexity = 10, twist = -2500,slices = 100, scale = 1.7)
translate([10, 50, 0])
color("white",1.0)
circle(r = 11);
color("white",0.75)
rotate_extrude()
translate([75,-50,10])
circle(5);
color("orange",0.75)
rotate_extrude()
translate([-80,0,10])
circle(5);



