Add 2022-03-12.
This commit is contained in:
parent
77dd785839
commit
bac3544f22
|
@ -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;
|
|
@ -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_09 from './2022-03-09.js';
|
||||||
import p2022_03_10 from './2022-03-10.js';
|
import p2022_03_10 from './2022-03-10.js';
|
||||||
import p2022_03_11 from './2022-03-11.js';
|
import p2022_03_11 from './2022-03-11.js';
|
||||||
|
import p2022_03_12 from './2022-03-12.js';
|
||||||
|
|
||||||
const projects: Project[] = [
|
const projects: Project[] = [
|
||||||
p2022_03_06,
|
p2022_03_06,
|
||||||
|
@ -14,6 +15,7 @@ const projects: Project[] = [
|
||||||
p2022_03_09,
|
p2022_03_09,
|
||||||
p2022_03_10,
|
p2022_03_10,
|
||||||
p2022_03_11,
|
p2022_03_11,
|
||||||
|
p2022_03_12,
|
||||||
];
|
];
|
||||||
|
|
||||||
export default projects;
|
export default projects;
|
||||||
|
|
Loading…
Reference in New Issue