#psychedelicart #pixelart
Piece created with code in Hydra. Hydra is a toolkit for live coding of network visuals created by Olivia Jack (hydra.ojack.xyz)
/*
Psychedelic Noise
by Daniel Oropeza
Tw: @ferdoropeza
*/
src(o0).modulate(
src(o0)
.brightness(2000)
.color(0, 1)
.invert(1)
.rotate()
.pixelate(10,10)
.scrollY(0, -0.2),
1
).layer(
osc(50,0.1).thresh().kaleid(4).repeat(2,2).rotate(Math.PI/4).scroll(()=> Math.cos(time*0.1),()=> Math.round(time*0.01))
.modulateHue(src(o0).scale(1.01).rotate(),8).modulate(
gradient().pixelate(2,2).brightness(-0.5).color(.8,1)
.mult(noise(8,.1).pixelate(2,2).brightness(1).posterize(4,1).brightness(-1)
,-0.15).contrast(3.25).scale(.3).diff(shape(4,0.3,1e-6))
.scale(1,.8)
.modulateScale(noise(8,.2).pixelate(8,8).brightness(1).posterize(3,1)).add(src(o0).modulate(
osc(6,0,1.5).brightness(-.5).modulate(noise(3,.1).modulatePixelate(
noise(3,.1).thresh(),504,8).add(gradient(),-1),1)
.add(gradient().brightness(-.5),.5)
,-.01))).mask(shape(4, [0.01, 0.9].smooth(), 0.0)
.rotate(() => time / Math.PI * 4)
.pixelate(4,4)
))
.modulate(
gradient()
.rotate()
.pixelate(2, 2).kaleid(4)
.brightness(-.5), -0.009)
.out();