#GlitchArt
Piece created with code in Hydra. Hydra is a toolkit for live coding of network visuals created by Olivia Jack (ojack.xyz)
/*
Pixel Streak
by Daniel Oropeza
Tw: @ferdoropeza
*/
osc(350,0,300)
.posterize(100,8)
.rotate()
.pixelate(10,100)
.modulateScale(
osc(12, () => -1*Math.cos(time * 0.0000000005)).thresh(0,1).kaleid(500)
.scale(1.1, 0.5)
.r(1.2),
.19,
0.8,
() => (time * 0.001) % 200
)
.rotate()
.pixelate(50,50)
.kaleid(500)
.modulateScale(
osc(12, () => 1*Math.cos(time * 0.0005)).thresh(0,1).kaleid(500)
.scale(1.1, 0.5,2)
.r(1.2),
0.19,
0.6,
() => -1*Math.sin(time * 0.001) % 30 + 7
)
.pixelate(80,80)
.out();
src(o0).mask(shape(4,0.55,0).scale(1,0.3).scrollX([0.004, 0,-0.004])
.scrollY([0, 0.004])
.modulate(noise(5,0.1).pixelate(150,50))).modulateScale(osc(11,0).thresh(0.3).rotate(11),0.3).out(o1)
src(o2).repeat([1.001,1.01,0.999],0.999)
.layer(src(o1).luma(0.1,0.1))
.out(o2);
render(o2);