# MinaCoding_MochiMochi

# StackedPastry

**For *MinaCoding2026*** *Day 26: Mochi Mochi,* **StackedPastry** coded in **Openscad** is a chewy stacked pastry.

## Poetry

```javascript
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

![](https://cdn.hashnode.com/uploads/covers/61d25a2b0413645f5c7beb00/6877b59c-15e6-4291-9046-cea9c370320c.png align="center")

![](https://cdn.hashnode.com/uploads/covers/61d25a2b0413645f5c7beb00/769295e7-1628-4f6f-9bcb-abe99fa47783.png align="center")

![](https://cdn.hashnode.com/uploads/covers/61d25a2b0413645f5c7beb00/7b7e45ef-d62f-4f2f-930e-0f3b2da84b8d.png align="center")

![](https://cdn.hashnode.com/uploads/covers/61d25a2b0413645f5c7beb00/14929f30-4410-471a-8cc0-41051b530fe1.png align="center")

## Code

```javascript

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);

```
