eggg dot uk

hydra - snapshot of pastagang hydra visual NaN festival in Karlsruhe 2025-11-29

a snapshot of pastagang hydra code during NaN festival in Karlsruhe

The visuals got way better than this but i forgot to take more copies

 1shape(P("2 3 8 20"))
 2.color(P(".1 .2 .6 .9"),.5,.7)
 3.repeat(20,16)
 4.blend(o0,P(".5 .5 .5 .9"))
 5.scrollX(.1,.1)
 6.modulateRotate(osc(P("1 3 5 7")))
 7.brightness(.1)
 8.diff(o0)
 9
10.out()

Doctoring it slightly to get it to run in hydra below (removing the P() stuff which is a flok function)

 1bpm=130
 2
 3shape([2, 3, 8, 20])
 4.color([.1, .2, .6, .9],.5,.7)
 5.repeat(20,16)
 6.blend(o0,[.5, .5, .5, .9])
 7.scrollX(.1,.1)
 8.modulateRotate(osc([1, 3, 5, 7]))
 9.brightness(.1)
10.diff(o0)
11
12.out()

#livecoding #hydra #code