# NaPoWriMo+GenMo2026_TheDipper

# **DippingWithPixels**

For my 23rd Poem of  #**NaPoWriMo/ #NaPoGenMo 2026** coded in ***LiveCodeLab*** ***& HydtaVideoSynth***\*,\* **DippingWithPixels** is a coded poem written in the form of ***The Dipper*** by **Anne Marie Wells but reversed (5-2-1-3-4 lines)**.

## Video

%[https://youtu.be/6cTz2cbgM4w] 

## Code

### HydraVIdeoSynth (5-2-1)

```javascript


voronoi(1,3,4).pixelate((time % 10 + 40),()=> (time % 20 + 1)).
colorama([0.4,0.3,0.2,0.1,0.2,0.3].smooth()).modulateRotate(osc(0.5,0.3,0.2)).
repeat([2,3,4],[1,3]).scale(()=> (time % 10 + 1)/7).scrollX(0.25).
modulateScale(noise(1,3,4).pixelate((time % 10 + 40),()=> (time % 20 + 1))).
out(o1)

noise(2,3,1).colorama([0.4,0.3,0.2,0.1,0.2,0.3].smooth()).repeat(1,2).modulateScale(o1,0.6).
out(o0)

speed = 0.25
```

### LiveCodeLab (3-4)

```javascript
simpleGradient white,color(sin(time) * 225,230 - ((time % 15) * 15),(time % 15)*15 ),grey
fill color((time % 15)*15 + 10, 255 - ((time % 15) * 15), sin(time) * 200)
ambientLight color(cos(time) * 20,230 - ((time % 15) * 15),(time % 15)*15 )

4 times with i
	rotate Math.hypot(sin(time),wave(3))
	move Math.hypot(sin(time),(time % 3)/100), sin(time) / 3, cos(time) / 100
	ball
```
