Commit 39ce255b by PLN (Algolia)

feat: Olivia & Eglantine

parent 4739d0e8
// Pour Églantine <3
// Happy 22
s0.initImage("/home/pln/Work/Hydra/StarryNights/img/july-6-2019-planetary-nebula-ngc-5189.jpg")
src(s0)
.scale(() => 1 + 0.5 * Math.sin(time/(6*5*2003)))
.out(o0)
src(o0)
.modulate(src(s0)
.scale(() => 1.5 + 0.5 * Math.sin(time/6))
)
.out(o1)
src(o1)
.blend(
src(s0)
.modulateScale(voronoi(10,0.013))
, () => 0.5 + 0.3 * Math.sin(time/1970) // TODO Fix year?
)
.blend(
src(o1).mult(voronoi(() => (time % 100),0.1).thresh(0.5))
.rotate(() => (time/2003 % 360))
, () => Math.sin(time/10)
)
.out(o2)
src(o2)
.brightness(-0.1)
.contast(1.1)
.out(o3)
render(o3)
// Pour Olivia 🎂
// Joyeux anniversaire
s0.initImage("/home/pln/Work/Hydra/StarryNights/img/july-5-2019-trifid-nebula.jpg")
src(s0)
.brightness(() => 0.1 + 0.1 * Math.sin(time/5))
.saturate(1.9)
.out(o0)
src(o0)
.modulate(src(s0).scale(() => 1.5 + 0.5 * Math.sin(time/5)))
.out(o1)
src(o1)
.blend(
src(s0)
.brightness(0.3)
.modulatePixelate(shape(10, 0.03))
.brightness(-0.2)
, () => 0 + 0.5 * Math.sin(time/19.72)
)
.add(noise(99,0.1).thresh(0.9))
.out(o2)
src(o2)
.contrast(1.5)
.hue(0.5) // TODO: propose le bleu
.out(o3)
render(o3)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment