# Genuary2026_AnimationGeometry

Coded in **LiveCodeLab** for Genuary2026,, **DuoDigiLimbs**  uses LiveCodeLab to make these limbs move  through *Organic Geometry.(Prompt 25)*  and *Exaggeration(Animation Principles: Prompt 2)*

##   
Poetry

```javascript
Limbs and joints 
Stretching and moving
Many geometric points
Fusing as they were drew in
```

## Video

%[https://youtu.be/u9XArKE_mD0] 

## Code

### LiveCodeLab Animation

```javascript
simpleGradient white,gold,white

scale 0.43

pushMatrix()
16 times with i
	26 times with j
		rotate 0.5 * i, 0.5 * j, sin(time) * 0.9
		move 0.005,-0.01*i
		move 0.000005,-0.01*j,-0.1
			rect 0.1,0.3,0.2
popMatrix()



pushMatrix()
ambientLight blue
16 times with i
	26 times with j
		rotate 0.5 * i, 0.5 * j, sin(time) * 0.9
		move -0.005*j,0.01*i
		move 0.000005,-0.01*j,-0.1
			rect 0.1,0.3,0.2
popMatrix()

pushMatrix()
ambientLight
16 times with i
	26 times with j
		rotate 0.5 * i, 0.5 * j, sin(time) * 0.9
		move -0.005,0.01*i
		move 0.000005,-0.01*j,-0.1
			ball 0.1,0.3,0.2
popMatrix()
```

### LiveCodeLab Audio

```javascript
if time % 15 < 5
	if time % 2 == 0
		bpm 122
		play 'tap',  '--x- -xx-x --x- -x-x'
		play "pianoRHChord" ,'--x- -x—x-x --x- -x-x'
		play 'beepC',      '-x-x -x-- x--x xxx-'
	else
		bpm 61
		play 'beepA',      '--x- x-x- --x- ----'
		play "voltage"  ,'--x- -xx --x- ----'
		play "pianoLHChord" ,'x--x--xxxx-xx---xx'
		play "warm"  ,'--x- -x-x --x- x-x-'
		play 'snap',   '--x- -x--x-- -xx- --x--'



if time % 2 == 0
	bpm 144
	play 'lowFlash',   '--x- --x- -xx- -xx-'
	play "pianoLHChord" ,'x--x--xx-'
	play 'voltage',    'x-x- -x-- x-xx x-xx'
else
	play 'tranceKick', '-x-x ---x x--- --xx'
	play 'beepC',      '-x-- ---- x--x xxx-'
	play 'tic',      '--x- --xx-- --x- --xx--'
	play 'snap',   '--x- -x--x-- -xx- --x--'



if time % 15 > 5 && time % 15 < 10
	if time % 3 == 0
		bpm 77
	else
		bpm 33

	play "pianoLDChord" ,'x-x-xx—-x'
	play 'penta',  'x-x- -xx- x  x --x- --x-'
	play 'detune', '-x-x ---x x-x  x- --xx'
	play 'penta',  '--x- -xx- x  x --x- --x-'
	play 'ride',      '-x-- ---- x--x xxx-'
	play 'downstairs',      '--x- --xx-- --x- --xx--'
	play 'tense',      'x--x  x --x– x -x-- -x--'
```
