From ef83d407aea9c4ec8efe1ea4ca56258869c5abd0 Mon Sep 17 00:00:00 2001 From: Bauke Date: Mon, 7 Mar 2022 16:36:07 +0100 Subject: [PATCH] Add 2022-03-06. --- source/2022-03-06.ts | 56 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 source/2022-03-06.ts diff --git a/source/2022-03-06.ts b/source/2022-03-06.ts new file mode 100644 index 0000000..f0d8977 --- /dev/null +++ b/source/2022-03-06.ts @@ -0,0 +1,56 @@ +import {Generic, SimplexNoise} from './gegl/exports.js'; + +const [width, height] = [1920, 1080]; + +const project: Project = { + name: '2022-03-06', + operations: [ + new SimplexNoise({scale: 4, seed: 2_071_140_406}), + new Generic('gegl:newsprint', { + colorModel: 'rgb', + pattern2: 'line', + period2: '200', + angle2: '15', + pattern3: 'line', + period3: '200', + angle3: '45', + pattern4: 'line', + period4: '200', + angle4: '0', + }), + new Generic('gegl:mirrors'), + new Generic('gegl:softglow'), + new Generic('gegl:newsprint'), + new Generic('gegl:stereographic-projection', {tilt: 123}), + new Generic('gegl:focus-blur', { + blurType: 'gaussian', + blurRadius: 11.5, + radius: 0.9, + midpoint: 0.6, + }), + new Generic('gegl:newsprint', { + colorModel: 'rgb', + pattern2: 'diamond', + period2: '200', + angle2: '0', + pattern3: 'diamond', + period3: '200', + angle3: '35', + pattern4: 'diamond', + period4: '200', + angle4: '55', + }), + new Generic('gegl:focus-blur', { + blurType: 'gaussian', + blurRadius: 11.5, + radius: 0.9, + midpoint: 0.6, + }), + ], + resolution: { + width, + height, + }, +}; + +export default project;