The Higgs boson is an elementary particle in the Standard Model of particle physics produced by the quantum excitation of the Higgs field, one of the fields in particle physics theory. It is named after physicist Peter Higgs, who in 1964 along with five other scientists proposed the Higgs mechanism to explain why some particles have mass.
Interactive piece created with code in Hydra (hydra.ojack.xyz). Move the mouse to distort the grids.
Hydra is a toolkit for live coding of network visuals created by Olivia Jack (ojack.xyz)
/*
Higgs boson
by Daniel Oropeza
Tw: @Ferdoropeza
*/
gradient()
.hue(0.6)
.rotate(3.9)
.mult(shape(4,.95).repeat(15,15).scale([.8,.8].fast(.25),0.6,1).modulateScale(gradient().g(7)).modulateScale(noise(4),()=>mouse.x/25000))
.out();
src(o1)
.layer(
shape(100, 0.6, 0)
.scale(1, 0.5, 1)
.invert([1, 1].smooth())
)
.layer(
osc(Math.PI * 2, 0.1, 2).modulate(
shape(100, 0.4, 0.15)
.scale(1, 0.5, 1)
.color(0.5, 0.5, 0.5)
.add(gradient(), -1),
1
)
)
.diff(
shape(100, 0.19, 0.29)
.scale(1.1, 0.6)
.r()
.mult(
noise(5, 0.03)
.brightness(3)
.mult(
osc(
9,
0.09,
() => 0.2 * Math.sin(time * 3) + 0.5
).color(-0.5, 0.5, 0.5)
)
)
)
.modulateScale(
shape(240, 0.9, 0)
.scrollX(0.05)
.rotate(() => time / 10),
() => Math.sin(time / 3) * 0.2 + 0.2
)
.mask(shape(100, 0.6, 1).scale(1.1, 0.6))
.out(o1);
src(o0)
.layer(src(o1).mult(src(o0),1).layer(src(o1).add(noise(2000,.3).luma(),1)
.contrast(1.01)
.blend(src(o1).scrollX(.003).scale(1.02),.79)
.modulate(noise(200),.001)).blend(src(o3),0.4))
.out(o2);
osc(3,0,20).hue(-.15).saturate(1.2)
.blend(gradient(10),.05)
.modulateScale(noise(2,.1))
.modulatePixelate((noise(2,.05)),10)
.saturate(1.1)
.blend(src(o3).scale(1.01))
.blend(src(o3).scale(1.02))
.blend(src(o3).scale(1.03))
.blend(src(o3).scale(1.04))
.layer(noise(2,.05).luma(.5,.1).invert().thresh().color(0,0,1))
.out(o3);
render(o2);