# WCCC_Insects

# AntFulTriosInSpace

For this week's Creative Code challenge by @sableRaph: *“Insect*”, **AntFulTriosInSpace** shows the space journey of certain Ant Trios that have embarked on a galactic journey to see the universe. Coded in **Locomotion & HydraVideoSynth.**

## Poem

```ocaml
The ants have decided to explore
In trios, to attempt to witness more
More than they ever could on this planet
As they wanted to feed their mind
New habits
New pivots
New paths to add to their timeline
```

## Images

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1752672391258/f4155c63-22ad-4509-bba1-c3d7b5257cc2.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1752672403250/bb647e09-b114-4ac8-af87-f7e66ad2ea97.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1752672395570/382209ac-80b4-4a30-bb8a-067ceb2252b2.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1752672411887/f82fa3c3-e967-4fab-a40b-bec887beb1bc.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1752672440580/9e8c4ae7-9cf7-4b21-9088-e9f19457032d.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1752672424001/8b4eb9b1-9e13-43f6-a080-e81eb9ea0ee8.png align="center")

## Code

### Locomotion

```haskell
point {x = range 0 17 (osc 0.15), z = range 0 6 (osc 0.35) , y = range 0 6 (osc 0.35), intensity = range 8 25 (osc 0.5), color = 0x844080  };


d n = dancer{url = "ant.glb",size = 0.75,y = range 3 -3 (osc 0.25), animation = [n,1,2 ,1, 3,1], rz = 17,z = range 5 -5(osc 0.15), rx = range 5 -5 (osc 1),sx = range -2.5 2.5(0.125),sz = range -3 3 (osc 0.35)}; 
for [0..8] d;
```

### HydraVideoSynth

```javascript
s0.initScreen()

src(s0).modulateScrollX(src(s0).scale(1.75).repeat(2,2),1.3).pixelate([5,100000].smooth(),[50,100,200,10000,100000]).out()
```
