Create 2022-03-29.

This commit is contained in:
Bauke 2022-03-29 22:35:04 +02:00
parent 783b0ef665
commit a98738cff8
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
2 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,50 @@
import {
Bloom,
Cartoon,
FocusBlur,
Mirrors,
Oilify,
Plasma,
} from '../../gegl/exports.js';
import Project from '../../project.js';
const [width, height] = [3840, 2160];
const project: Project = {
createInputImage: false,
name: '2022-03-29',
operations: [
new Plasma({
height,
seed: 3_474_742_930,
turbulence: 2,
width,
}),
new Cartoon({
maskRadius: 50,
pctBlack: 1,
}),
new FocusBlur({
blurType: 'lens',
}),
new Mirrors({
oX: 0.406,
oY: 0.588,
}),
new Oilify({
maskRadius: 8,
}),
new Bloom({
radius: 2.08,
softness: 87.94,
strength: 165.29,
}),
],
resetAlpha: false,
resolution: {
width,
height,
},
};
export default project;

View File

@ -10,6 +10,7 @@ import p2022_03_12 from './2022-03-12.js';
import p2022_03_13 from './2022-03-13.js';
import p2022_03_14 from './2022-03-14.js';
import p2022_03_15 from './2022-03-15.js';
import p2022_03_29 from './2022-03-29.js';
const projects: Project[] = [
p2022_03_06,
@ -22,6 +23,7 @@ const projects: Project[] = [
p2022_03_13,
p2022_03_14,
p2022_03_15,
p2022_03_29,
];
export default projects;