# Mathober2024_Homologous

# ***MovingWIthChaos***

For the 13th sketch of Mathober2024, ***MovingWIthChaos*** is coded in **Hydra & Locomotion.** It is coded with Homologous in mind as the four entities trying to move in the background, have limbs that are similar but move differently. ***Homologous***  is the 14th prompt of Mathober, this year.

## Poetry

```ocaml
Moving In the Background
As the Shapes squirm Around
Wiggling as they approach
Wiggling  as they encroach
```

## Video

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

## Code

### Hydra

```javascript
s0.initScreen()

osc(1,1,1).kaleid(4).diff(src(s0).scale(0.75)).
scrollX([0.5,-0.3,-0.1,0.3,-0.5]).modulateRepeat(noise(1,3,1).diff(s0)).
colorama(()=> (time % 10 + 1)/11).modulateScale(voronoi(3,1,1).
blend(src(s0).repeat(3,3))).out()


speed = 0.25
```

### Locomotion

```javascript
dancer { url = "raccoon.glb" , size = 3, y = - 3, animation = 35, dur = 5};
dancer { url = "DataGhost" , size = 1.5, animation = 22, dur = 2, y = 1, x = 4};
dancer { url = "NatureGirl.glb" , size = 2, y = -3, x = - 4, animation = [3,1,4,1,2,1], dur = 5};dancer { url = "mushy.glb" , size = 3, animation = 6, dur = 10};
```
