# Mathober2025_Central

# **ClusteredButVaried**

For my 15th sketch of #Mathober2025 coded in ***Locomotion****,* **ClusteredButVaried** takes the 31st prompt of ***“Central”*** and uses a line of Raccoons to show movements that may have no central tendencies.

## Poetry

```haskell
They are in line
But the distance isn’t measured as a feature
For this not treasured for these creatures
As they waltz till it is no longer time
```

## Video

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

## Code

```haskell
b n = dancer { url ="raccoon", size = 0.75*sin(n/2), x = sin(n), z = sin(n) * range -5 5 (osc 0.10),animation = [n,1,n+5,1,n+2,1], y = (-2/n)*sin(n)*2,dur = n/2};
for [0..45] b;

-----

b n = dancer { url ="raccoon", size = 1.75*sin(n/2), x = sin(n), z = sin(n) * range -5 5 (osc 0.10),animation = [n,1,n+5,1,n+2,1], y = (-2/n)*sin(n)*2,dur = n/2};
for [0..45] b;
```
