2022-03-10 17:34:26 +00:00
|
|
|
import {
|
|
|
|
Crop,
|
|
|
|
FocusBlur,
|
|
|
|
Generic,
|
|
|
|
MedianBlur,
|
|
|
|
Mirrors,
|
|
|
|
Newsprint,
|
|
|
|
TileSeamless,
|
|
|
|
Waterpixels,
|
|
|
|
Waves,
|
2022-03-11 17:47:38 +00:00
|
|
|
} from '../../gegl/exports.js';
|
|
|
|
import Project from '../../project.js';
|
2022-03-09 13:33:33 +00:00
|
|
|
|
|
|
|
const [width, height] = [1920, 1080];
|
|
|
|
|
|
|
|
const project: Project = {
|
|
|
|
createInputImage: true,
|
|
|
|
name: '2022-03-09',
|
|
|
|
operations: [
|
|
|
|
new Generic('gegl:maze'),
|
|
|
|
new Generic('gegl:tile-glass'),
|
2022-03-10 17:34:26 +00:00
|
|
|
new Waterpixels(),
|
2022-03-09 13:33:33 +00:00
|
|
|
new Newsprint({
|
|
|
|
angle2: -55.4,
|
|
|
|
angle3: 60.77,
|
|
|
|
angle4: 103.55,
|
|
|
|
colorModel: 'rgb',
|
|
|
|
}),
|
2022-03-10 17:34:26 +00:00
|
|
|
new Waves({
|
2022-03-09 13:33:33 +00:00
|
|
|
amplitude: 5.9,
|
|
|
|
clamp: true,
|
|
|
|
}),
|
|
|
|
new Crop({height, width}),
|
|
|
|
new Generic('gegl:oilify'),
|
2022-03-10 17:34:26 +00:00
|
|
|
new TileSeamless(),
|
|
|
|
new MedianBlur({
|
2022-03-09 13:33:33 +00:00
|
|
|
percentile: 2.35,
|
|
|
|
}),
|
|
|
|
new Mirrors({
|
|
|
|
nSegs: 3,
|
|
|
|
oX: 0.1,
|
|
|
|
oY: 0.2,
|
|
|
|
rAngle: 330,
|
|
|
|
}),
|
|
|
|
new FocusBlur({
|
|
|
|
blurRadius: 33.57,
|
|
|
|
blurType: 'lens',
|
|
|
|
focus: 0.111,
|
|
|
|
highlightFactor: 0.529,
|
|
|
|
radius: 1.173,
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
resetAlpha: true,
|
|
|
|
resolution: {
|
|
|
|
width,
|
|
|
|
height,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export default project;
|