# WCCC_Witch

# CodedSpells

For this week's Creative Code challenge by @sableRaph: ***“WitchCraft”***, CodedSpells is coded in ***HydraVideoSynth*** and imagines what if the code itself is an activation for a spell alongside the output.

This is a remake of: [https://blog.illestpreacha.com/sciartseptember2023glowing](https://blog.illestpreacha.com/sciartseptember2023glowing)

## Poetry

```ocaml
What is even occuring?
are the results something reccuring?
What is being shown?
is this ritual something to be done alone?
```

## Video

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

## Code

```javascript
osc(11,[0,0.00001,0.00002].smooth(),1)
  .kaleid([2,3,4,3,2].smooth())
  .mask(shape(4,0.3,1))
  .modulateRotate(shape(4,0.1,1))
  .modulateScale(voronoi(44,3,3))
  .modulateRotate(osc(4,0.1,0.8))
  .modulateScale(shape([4,5,4],0.1,0.8))
.modulate(shape(1,0.1,0.8),0.4)
  .scale([0.35,0.45,0.55,0.45,0.35].smooth())
  .modulateRepeat(shape([4,3,5,3,2,4],0.2,1).color(0.3,1,1,0.5),[0.1,0.3,0.5,0.7,0.9].smooth())
  .rotate(()=> Math.cbrt(time))
  .out()
```
