From bac3544f2248b1f46ae1715925dccfd3b61bd8a5 Mon Sep 17 00:00:00 2001 From: Bauke Date: Sat, 12 Mar 2022 15:44:43 +0100 Subject: [PATCH] Add 2022-03-12. --- source/2022/03/2022-03-12.ts | 51 ++++++++++++++++++++++++++++++++++++ source/2022/03/projects.ts | 2 ++ 2 files changed, 53 insertions(+) create mode 100644 source/2022/03/2022-03-12.ts diff --git a/source/2022/03/2022-03-12.ts b/source/2022/03/2022-03-12.ts new file mode 100644 index 0000000..3362c5e --- /dev/null +++ b/source/2022/03/2022-03-12.ts @@ -0,0 +1,51 @@ +import { + DiffractionPatterns, + Generic, + MedianBlur, + Mirrors, + Newsprint, + Waterpixels, +} from '../../gegl/exports.js'; +import Project from '../../project.js'; + +const [width, height] = [3840, 2160]; + +const project: Project = { + createInputImage: false, + name: '2022-03-12', + operations: [ + new DiffractionPatterns({ + brightness: 0.382, + polarization: 0.67, + scattering: 53.21, + height, + width, + }), + new Waterpixels({ + smoothness: 2, + }), + new Generic('gegl:edge-neon', { + amount: 0.5, + radius: 3, + }), + new Mirrors({ + oX: 0.365, + oY: 0.694, + trimX: 0.375, + trimY: 0.375, + }), + new Newsprint({ + turbulence: 0.996, + }), + new MedianBlur({ + neighborhood: 'diamond', + }), + ], + resetAlpha: false, + resolution: { + width, + height, + }, +}; + +export default project; diff --git a/source/2022/03/projects.ts b/source/2022/03/projects.ts index ec3b8f0..ac4032e 100644 --- a/source/2022/03/projects.ts +++ b/source/2022/03/projects.ts @@ -6,6 +6,7 @@ import p2022_03_08 from './2022-03-08.js'; import p2022_03_09 from './2022-03-09.js'; import p2022_03_10 from './2022-03-10.js'; import p2022_03_11 from './2022-03-11.js'; +import p2022_03_12 from './2022-03-12.js'; const projects: Project[] = [ p2022_03_06, @@ -14,6 +15,7 @@ const projects: Project[] = [ p2022_03_09, p2022_03_10, p2022_03_11, + p2022_03_12, ]; export default projects;