57 lines
1.2 KiB
TypeScript
57 lines
1.2 KiB
TypeScript
import {Generic, SimplexNoise} from './gegl/exports.js';
|
|
|
|
const [width, height] = [1920, 1080];
|
|
|
|
const project: Project = {
|
|
name: '2022-03-06',
|
|
operations: [
|
|
new SimplexNoise({scale: 4, seed: 2_071_140_406}),
|
|
new Generic('gegl:newsprint', {
|
|
colorModel: 'rgb',
|
|
pattern2: 'line',
|
|
period2: '200',
|
|
angle2: '15',
|
|
pattern3: 'line',
|
|
period3: '200',
|
|
angle3: '45',
|
|
pattern4: 'line',
|
|
period4: '200',
|
|
angle4: '0',
|
|
}),
|
|
new Generic('gegl:mirrors'),
|
|
new Generic('gegl:softglow'),
|
|
new Generic('gegl:newsprint'),
|
|
new Generic('gegl:stereographic-projection', {tilt: 123}),
|
|
new Generic('gegl:focus-blur', {
|
|
blurType: 'gaussian',
|
|
blurRadius: 11.5,
|
|
radius: 0.9,
|
|
midpoint: 0.6,
|
|
}),
|
|
new Generic('gegl:newsprint', {
|
|
colorModel: 'rgb',
|
|
pattern2: 'diamond',
|
|
period2: '200',
|
|
angle2: '0',
|
|
pattern3: 'diamond',
|
|
period3: '200',
|
|
angle3: '35',
|
|
pattern4: 'diamond',
|
|
period4: '200',
|
|
angle4: '55',
|
|
}),
|
|
new Generic('gegl:focus-blur', {
|
|
blurType: 'gaussian',
|
|
blurRadius: 11.5,
|
|
radius: 0.9,
|
|
midpoint: 0.6,
|
|
}),
|
|
],
|
|
resolution: {
|
|
width,
|
|
height,
|
|
},
|
|
};
|
|
|
|
export default project;
|