# NaPoWriMo+GenMo2026_Incremental

# SpheresByCentral

For my 10th Poem of  **NaPoWriMo/ NaPoGenMo 2026** coded in ***LiveCodeLab*** *,* ***SpheresByCentral***  is made using increasing the lines per stanza (4-5-6-7).

## Video

%[https://youtu.be/OVo-MCIQ-3Q] 

## LiveCodeLab Code

```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 )
stroke color(255 - ((time % 15) * 15), sin(time) * 200,(time % 15)*15 + 10)

pushMatrix()
47 times with i
	scale 0.5
	ball
popMatrix()

pushMatrix()
47 times with i
	scale -0.5
	move -wave(0.21),wave(0.21)
	ball
popMatrix()

pushMatrix()
47 times with i
	scale -0.9
	rotate Math.hypot(wave(sin(time)/1000),wave(0.004))
	move -wave(0.3101),wave(0.101)
	ball
popMatrix()

```
