# WCCC_PenPlotter

# PlotterSplatter

For this week's Creative Code challenge by @sableRaph: "***Pen Plotter“, PlotterSplater*** *takes* ***LiveCodeLab*** Code and imagines the effect of a Plotter that wants a bit of splatter.

## Poem

```ocaml
Plotters Want to Splatter
What colors will it put it in this batter
How does the code imagine this?
What angles do the lines touch?
Where does it decide to rush?
What type of splatter will persist?
```

## Images

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1735351325469/4350faeb-a030-4bf8-b100-c4a5488b64c0.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1735351329224/df6562a5-e973-4e1c-844f-3d05535cfd2b.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1735351333793/5d668248-ed65-460f-9fdd-bd0b1fcb9e49.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1735351337276/4c653d63-29ad-4cba-aef1-e7a3fed35172.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1735351341590/ffa0b58a-a7b6-4f1f-b4a0-f8fed213f727.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1735351344482/0ec0bee3-0eba-4d68-833d-a70c2f96acb2.png align="center")

## LiveCodeLab Code

```javascript
simpleGradient black,white,black
//simpleGradient white,blue,blue
//simpleGradient teal, orange, blue

animationStyle paintOver
scale sin(time % 10)
rotate time, time * 2, time * 3
line
scale time % 5 
	line sin(time), wave(0.0003)
```
