2022-03-08 18:42:36 +00:00
|
|
|
import {Crop, Generic, Mirrors, Plasma} from './gegl/exports.js';
|
2022-03-07 18:49:54 +00:00
|
|
|
import Project from './project.js';
|
|
|
|
|
|
|
|
const [width, height] = [1920, 1080];
|
|
|
|
|
|
|
|
const project: Project = {
|
2022-03-08 23:40:01 +00:00
|
|
|
createInputImage: false,
|
2022-03-07 18:49:54 +00:00
|
|
|
name: '2022-03-07',
|
|
|
|
operations: [
|
2022-03-08 18:42:36 +00:00
|
|
|
new Plasma({
|
2022-03-07 18:49:54 +00:00
|
|
|
height,
|
|
|
|
seed: 2_000_111_903,
|
|
|
|
turbulence: 1,
|
|
|
|
width,
|
|
|
|
}),
|
|
|
|
new Generic('gegl:mosaic', {
|
|
|
|
colorVariation: 1,
|
|
|
|
tileHeight: 5,
|
|
|
|
tileNeatness: 1,
|
|
|
|
tileSize: 116.53,
|
|
|
|
tileSurface: 'true',
|
|
|
|
tileType: 'triangles',
|
|
|
|
}),
|
|
|
|
new Generic('gegl:waves', {
|
|
|
|
amplitude: 2.9,
|
|
|
|
clamp: 'true',
|
|
|
|
samplerType: 'cubic',
|
|
|
|
}),
|
|
|
|
new Generic('gegl:waves', {
|
|
|
|
amplitude: 17.3,
|
|
|
|
clamp: 'true',
|
|
|
|
samplerType: 'cubic',
|
|
|
|
}),
|
2022-03-07 21:04:46 +00:00
|
|
|
new Mirrors({
|
2022-03-07 18:49:54 +00:00
|
|
|
oX: 1,
|
|
|
|
oY: 0.353,
|
|
|
|
nSegs: 2,
|
|
|
|
}),
|
|
|
|
new Generic('gegl:cartoon'),
|
|
|
|
new Crop({height, width}),
|
|
|
|
new Generic('gegl:waterpixels', {
|
|
|
|
fill: 'average',
|
|
|
|
size: 32,
|
|
|
|
smoothness: 1,
|
|
|
|
}),
|
2022-03-07 21:04:46 +00:00
|
|
|
new Mirrors({
|
2022-03-07 18:49:54 +00:00
|
|
|
oX: 0.01,
|
|
|
|
oY: 0.01,
|
|
|
|
nSegs: 5,
|
|
|
|
rAngle: 342,
|
|
|
|
}),
|
|
|
|
new Generic('gegl:median-blur'),
|
|
|
|
],
|
2022-03-09 13:31:51 +00:00
|
|
|
resetAlpha: false,
|
2022-03-07 18:49:54 +00:00
|
|
|
resolution: {
|
|
|
|
width,
|
|
|
|
height,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export default project;
|