# MinaCoding2026_MobileView

# MotionalMotion

**For *MinaCoding2026*** *Day25: MobileView, MotionalMotion is a* **HydraVideoSynth & Locomotion** Coded sketch exploring motions.

## Video

%[https://youtu.be/2clvRCHUXh0] 

## Code

### Locomotion

```javascript
point {x = range -10 17 (osc 0.15), y = range -8 6 (osc 0.35) , intensity = range 8 35 (osc 0.15), color = 0xC0B87FB };

a n = dancer { url="StoneFigure.glb", animation = n,x = -2 + n*0.005,y = n/100 + range 2 -2 (osc 0.35), z = sin(n)*3 + range 4 -4 (osc 0.15), ry=3.14, size=0.5, rx = range -90 90 (osc 0.3) }; for[0..50] a;

b n = dancer { url="StoneFigure.glb",animation = n, x = 2 + n*0.005,y = n/100 + range 2 -2 (osc 0.15), z = range 4 -4 (osc 0.55), ry=3.14, size= 0.25, rx = sin(n) *4 + range -90 90 (osc 0.03), ly = range 0 360 (osc 0.17) }; for[0..150] b;
```

### HydraVideoSynth

```javascript
s0.initScreen()

src(s0).modulateRotate(voronoi(1,2,3),4.01).invert().out()

speed = 0.45
```

```javascript
s1.initScreen()

src(s1).modulateScale(src(s1).pixelate(500,500).invert().scale(0.95)).out()
```
