diff --git a/source/2022/03/2022-03-07.ts b/source/2022/03/2022-03-07.ts index 2cba919..d38fa9c 100644 --- a/source/2022/03/2022-03-07.ts +++ b/source/2022/03/2022-03-07.ts @@ -1,6 +1,5 @@ import { Cartoon, - Crop, MedianBlur, Mirrors, Mosaic, @@ -46,7 +45,6 @@ const project: Project = { nSegs: 2, }), new Cartoon(), - new Crop({height, width}), new Waterpixels({ fill: 'average', size: 32, diff --git a/source/2022/03/2022-03-08.ts b/source/2022/03/2022-03-08.ts index fa6242c..0dd9bad 100644 --- a/source/2022/03/2022-03-08.ts +++ b/source/2022/03/2022-03-08.ts @@ -1,5 +1,4 @@ import { - Crop, DiffractionPatterns, FocusBlur, Newsprint, @@ -18,7 +17,6 @@ const project: Project = { height, width, }), - new Crop({height, width}), new TileSeamless(), new StereographicProjection(), new Newsprint({ diff --git a/source/2022/03/2022-03-09.ts b/source/2022/03/2022-03-09.ts index 7e819ef..068a235 100644 --- a/source/2022/03/2022-03-09.ts +++ b/source/2022/03/2022-03-09.ts @@ -1,5 +1,4 @@ import { - Crop, FocusBlur, Maze, MedianBlur, @@ -32,7 +31,6 @@ const project: Project = { amplitude: 5.9, clamp: true, }), - new Crop({height, width}), new Oilify(), new TileSeamless(), new MedianBlur({ diff --git a/source/2022/03/2022-03-10.ts b/source/2022/03/2022-03-10.ts index e91d9a0..7953e7f 100644 --- a/source/2022/03/2022-03-10.ts +++ b/source/2022/03/2022-03-10.ts @@ -1,4 +1,4 @@ -import {Bloom, CellNoise, Crop, Newsprint, Waves} from '../../gegl/exports.js'; +import {Bloom, CellNoise, Newsprint, Waves} from '../../gegl/exports.js'; import Project from '../../project.js'; const [width, height] = [3840, 2160]; @@ -11,7 +11,6 @@ const project: Project = { scale: 0.5, seed: 2_762_328_325, }), - new Crop({height, width}), new Newsprint({ angle4: 75.85, colorModel: 'rgb', @@ -31,7 +30,6 @@ const project: Project = { x: -0.25, y: -0.75, }), - new Crop({height, width}), new Bloom({ radius: 20, softness: 57, diff --git a/source/2022/03/2022-03-11.ts b/source/2022/03/2022-03-11.ts index 646c150..bcd7dd4 100644 --- a/source/2022/03/2022-03-11.ts +++ b/source/2022/03/2022-03-11.ts @@ -1,7 +1,6 @@ import { Bloom, Cartoon, - Crop, Newsprint, NoisePick, Plasma, @@ -51,7 +50,6 @@ const project: Project = { repeat: 5, seed: 0, }), - new Crop({height, width}), ], resetAlpha: false, resolution: { diff --git a/source/gegl/cartoon.ts b/source/gegl/cartoon.ts index 21b8881..75f2207 100644 --- a/source/gegl/cartoon.ts +++ b/source/gegl/cartoon.ts @@ -15,7 +15,7 @@ export class Cartoon extends BaseOperation { return Cartoon.default; } - public appendCrop = false; + public appendCrop = true; public name = 'gegl:cartoon'; constructor(parameters?: Partial) { diff --git a/source/gegl/waves.ts b/source/gegl/waves.ts index 9f276cc..f66c993 100644 --- a/source/gegl/waves.ts +++ b/source/gegl/waves.ts @@ -27,7 +27,7 @@ export class Waves extends BaseOperation { return Waves.default; } - public appendCrop = false; + public appendCrop = true; public name = 'gegl:waves'; constructor(parameters?: Partial) {