======Hydra Practice======
Made by: [[zoey-lin|Zoey]]
====hydra sketch 1====
**Try to move your mouse**
voronoi(1000,1,1)
.mult(osc(50,-0.1,8).kaleid(4))
.modulate(o0, () => mouse.x * 0.0003)
.out(o0)
====hydra sketch 2====
osc(50, -0.1, 10)
.kaleid(100)
.repeat(8, 5)
.out()
====hydra sketch 3====
noise(10, 1)
.modulateScrollY(osc(50),0.1,0)
.rotate( () => time%10 )
.out(o0)
====hydra sketch 4====
**just move your mouse**
osc(5,1,25).color(1,0.5,1).rotate(0, 0.9).kaleid().repeat()
.scroll(
() => -mouse.x / width,
() => -mouse.y / height)
.out(o0)
====hydra sketch 5====
**just move your mouse**
noise([400,200,100,50,25,10].fast(10))
.color(2,0.7,2)
.invert([0,1])
.out(o0)