# WCCC_Mazes

# UnFormatted Mazes

For this week's Creative Code Challenge by @sableraph: ***"Mazes”,* UnformattedMazes**  coded from **LiveCodeLab** Takes 3D Entities that are ever changing Mazes that are not properly formatted. This is done by taking the lines/edges of the 3D models and turn them into edges through **Glitchlab** and use various techniques to warp them throughout the video.

## Poetry

```javascript
Labyrinth or Mazes
Exits are Multiple
Or single?
3D Paths in 3D Spaces
They are unformatted,
Changing rapid
As it goes through an array
Of phases
Do you wish to engage with this beltway?
```

## Video

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

## Code

### LiveCodeLab

```javascript
50 times with i
	stroke i, i*2
	rotate sin(wave(i)/50)*(time % 10)
	move sin(time) / 100, Math.cbrt(wave(sin(time)))/1000
	noFill
	peg
```

```javascript
50 times with i
	ambientLight 10,30,50
	rotate wave(Math.cbrt(i)/(sin(time)*3))/500,Math.cbrt(sin(i))/sin(time), (time % 12 + 1)/100
	move 0.01, 0.01,0.01
	fill i,i
	stroke i,i%2,4
	peg
```

```javascript
animationStyle motionBlur
ambientLight 110,(time % 25 + 1) * 10,(time % 25 + 1) * 4
(time % 25 + 1) * 4 times with i
	scale (time % 32+ 1)/28
	rotate Math.hypot(0.3,(frame % 5 * 10)),Math.hypot(wave(frame % 1),0.4), Math.hypot(wave(frame % 1),0.24)
	fill orange
		box
	fill blue
		ball
	peg -2,-1,-2
```

### LiveCodeLab Audio

```javascript
if time % 30 > 15
	bpm 125
else
	bpm 64
	play "cosmos"  ,'--x- ---- --x- ----'
	play "warm"  ,'--x- x--- --x- -xx-'

play "pianoLDChord" + int(random 3) ,'x--x--xxx---xx'
play "pianoLHChord" + int(random 2) ,'x--xx---xxxx----- x'
play "pianoRHChord" + int(random 6) ,'x-xx----x-------x'

play "tense" + int(random 14) ,'x-xx--x'
```
