Add 2022-03-12.

This commit is contained in:
Bauke 2022-03-12 15:44:43 +01:00
parent 77dd785839
commit bac3544f22
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
2 changed files with 53 additions and 0 deletions

View File

@ -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;

View File

@ -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;