interlinked/source/2022/03/2022-03-11.ts

62 lines
1.0 KiB
TypeScript
Raw Normal View History

2022-03-11 11:09:38 +00:00
import {
2022-03-11 21:14:20 +00:00
Bloom,
2022-03-11 11:09:38 +00:00
Cartoon,
Newsprint,
2022-03-11 21:14:20 +00:00
NoisePick,
2022-03-11 11:09:38 +00:00
Plasma,
Waterpixels,
2022-03-11 17:47:38 +00:00
} from '../../gegl/exports.js';
import Project from '../../project.js';
2022-03-11 11:09:38 +00:00
const [width, height] = [3840, 2160];
const project: Project = {
createInputImage: true,
name: '2022-03-11',
operations: [
new Plasma({
seed: 168_139_081,
turbulence: 1.5,
height,
width,
}),
new Cartoon({
maskRadius: 40,
pctBlack: 0.2,
}),
new Waterpixels({
size: 64,
}),
new Cartoon({
maskRadius: 40,
pctBlack: 0.2,
}),
new Newsprint({
colorModel: 'rgb',
pattern2: 'circle',
pattern3: 'cross',
pattern4: 'circle',
period2: 15,
period3: 150,
period4: 30,
turbulence: 0.9,
}),
2022-03-11 21:14:20 +00:00
new Bloom({
2022-03-11 11:09:38 +00:00
radius: 7.48,
strength: 115.29,
threshold: 65.88,
}),
2022-03-11 21:14:20 +00:00
new NoisePick({
2022-03-11 11:09:38 +00:00
repeat: 5,
seed: 0,
}),
],
resetAlpha: false,
resolution: {
width,
height,
},
};
export default project;