# WCCC_VisualPoetry

# PoeticsWithLines

For this week's Creative Code challenge by @sableRaph: ***<mark> “Visual Poetry”</mark>***, **PoeticsWIthLines** is poetically coded through a **Monostich** `(One Line Poem)` **in Locomotion**, a **Nonnet** `(a nine-line poem with a specific syllable structure: 9, 8, 7, 6, 5, 4, 3, 2, 1)` **in HydraVideoSynth** & **The Dipper by Anne Marie Wells through LiveCodeLab.**

## Poetry

```ocaml
Poetry Through Code
Visually for the eyes to the roam
For the ears to stumble
Upon the words that are being told
The algorithm that is speaking
The emotions that are leaking
As these entities aren’t alone
```

## Video

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

## Poetic Code

### HydraVideoSynth Nonnets

```javascript
osc([3,2,1],[1,2,3]).
modulateRotate(voronoi()).
modulatePixelate(noise()).
pixelate(500).
scale([1,9].smooth()).
luma(.6).
scrollX(3).
rotate().
out()
```

```javascript
noise([1,2],[1,5,2,1],[3,1]).
modulateRotate(voronoi()).
modulatePixelate(noise()).
pixelate(500).
scale([1,9].smooth()).
luma(.6).
scrollX(3).
rotate().
out()
```

### Locomotion Monostich

```haskell
b n = dancer{url = "dataGhost",y = -5 + n + range 5 -5 (osc 0.125), animation = [n+ 2 ,1, n + 3,1], lz = n / range - 360 360 (osc 0.3),rz = 17,x = - 5 + n  + range 5 -5 (osc 0.111), rx = range 5 -5 (osc 0.15), size = 0.25 * n, dur = 15}; for[1..12] b;
```

### LiveCodeLab Dipper

```javascript
if time % 30 > 24 and time % 30 < 6
	play "bing"  ,'--x- -x--------x ---x --x- ------x'
	play "ciack" + int(random 2) ,'x--xx----xxxx'
	play "ride"  ,'--x- -----xx- ------xx-'

if time % 30 < 22
	play "pianoLHChord" + int(random 8) ,'x--x----x'
	play "pianoRHChord" + int(random 3) ,'xx----x-xx'

bpm 88

if time % 40 < 10 and time % 40 > 30
	bpm 44


play "detune" + int(random wave(4)) ,'--x- -xx- --x- -x-x'
play "dish" + int(random time % 12) ,'x'
play "downstairs"  ,'--x- -x-- xx-x- --x-'
play "glass"  ,'--x- -xx-- --x- -x-x'
```
