diff --git a/GlitchDeamon.js b/GlitchDeamon.js index cf5ca9e..e86777c 100644 --- a/GlitchDeamon.js +++ b/GlitchDeamon.js @@ -1,7 +1,6 @@ //Glitch deamon by PLN //Derieved from Pixelscape By [Marianne Teixido](https://github.com/MarianneTeixido) - src(o2) .saturate(1.2) .scale( // Glitch camera diff --git a/StarryNights/DustyHalley.js b/StarryNights/DustyHalley.js new file mode 100644 index 0000000..2fae64d --- /dev/null +++ b/StarryNights/DustyHalley.js @@ -0,0 +1,14 @@ +// Based on NASA LSPN-1725 (Comet P/Halley as taken March 8, 1986 by W. Liller, Easter Island) +s0.initImage("/home/pln/Work/Hydra/StarryNights/img/halley.png"); +src(s0).out(o0) +src(o0) + .modulate(src(o0),() => Math.sin(time/200) / 10) +.out(o1) +src(o1) + .modulateScale(osc(1,0.4),0.05) +.out(o2) +src(o2) + .blend(src(o2).thresh(), () => 0.5 + 0.125 * Math.sin(time / 100 % 180)) + .scale(0.989) +.out(o3) +render(o3) diff --git a/StarryNights/GaLactic.js b/StarryNights/GaLactic.js index 7dc79ff..07bf5ca 100644 --- a/StarryNights/GaLactic.js +++ b/StarryNights/GaLactic.js @@ -1,7 +1,7 @@ // From a picture of Galaxy Nasa 724203 - +// Private share: https://nech.pl/nights-galactic s0.initImage("https://git.plnech.fr/pln/Hydra/raw/7ab247cae7f562ecc0f1c13a6646e5a71f6c0f1f/StarryNights/img/724203.jpg") -src(s0).out(o0) +src(s0).out() src(o0) .blend(o0) @@ -19,4 +19,4 @@ src(o1) .scale(() => 1.5 + Math.sin(time/50) * 0.6) .out(o3) -render() +render(o3) diff --git a/StarryNights/img/ShoemakerLevy9.jpg b/StarryNights/img/ShoemakerLevy9.jpg new file mode 100644 index 0000000..93dccf7 Binary files /dev/null and b/StarryNights/img/ShoemakerLevy9.jpg differ diff --git a/StarryNights/img/ShoemakerLevy9.png b/StarryNights/img/ShoemakerLevy9.png new file mode 100644 index 0000000..e692486 Binary files /dev/null and b/StarryNights/img/ShoemakerLevy9.png differ diff --git a/StarryNights/img/halley.png b/StarryNights/img/halley.png new file mode 100644 index 0000000..62ca29e Binary files /dev/null and b/StarryNights/img/halley.png differ diff --git a/ideas.md b/ideas.md new file mode 100644 index 0000000..ff5447a --- /dev/null +++ b/ideas.md @@ -0,0 +1,14 @@ +# Fonds +- 420 SPACE CAT + + +# Formes + +Mask with shape/noise +``` +.mask( + shape(25, 0.25).modulateScale( + noise(400.5, 0.5) + ) +) +```