# MinaCoding2024_3D

# FloatIn3d

For the 24th day of **MinaCoding2024: "3D"** , ***Floatin3D*** is audiovisually coded in **LiveCodeLab.**

## Poem

```javascript
Intersection of Lines
Their Transformation intertwines
Translating
Rotating
Elevating
Spectating
For their forms are floating
As the pixels are roaming
```

## Video

%[https://youtu.be/7OaQUh5OJvM] 

## LiveCodeLab Code

```javascript

turns = Math.hypot(time % 6,3)
detail = 400
speed = 0.4
background black
scale 0.9

5 times
	move cos(wave(0.5)),tan(wave(0.25)),sin(0.15 * wave(0.003))
	rotate 15,3,1
	Math.sqrt(time % detail)* 8 times with i
		rotate 0, 0, (2 * pi) / detail
		move 0.65
			rotate (turns * i * pi) / detail + (time * speed), 0, 0
				rect 1

bpm 88

play 'tranceKick'  ,'-x-x --x x-- --xx'
play "detune"  ,'--x- - --x- ----'

play "glass"  ,'--x- ---- --x- ----'
play "hiss" + int(random 3) ,'x'

```
