# CodeJourney_Boxes

# **FluidBoxes**

Exploration of Boxes through a mix of animation and Livecoding in **LiveCodeLab**

## Poetry

```javascript
Boxes spilling
Spilling onto the edges of the screen
Reuniting with each other
But then dissipating when needed
To continue their movement throughout
```

## Video  

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

  

## LiveCodeLab Code

```javascript
simpleGradient black,black,grey
ambientLight 10,139,240

175 times with i
	scale 0.99
	fill white
	stroke black
	rotate 0.01, wave(-0.02 * i), 0.03 * 
	move -0.01,0.01,-0.02
	box 0.75, 0.85, 1.15



simpleGradient black,black,grey


175 times with i
	scale 0.99
	fill (i % 26 + 3)* 7, (i % 10 + 4) * 20, (i % 16 + 3) * 15
	stroke black
	rotate 0.01, wave(-0.02 * i), 0.03 * 
	move -0.01,0.01,-0.02
	box 0.75, 0.85, 1.15

```
