Add gegl:tile-seamless.

This commit is contained in:
Bauke 2022-03-10 18:27:54 +01:00
parent 010f2363bb
commit 567134ebf8
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
2 changed files with 17 additions and 0 deletions

View File

@ -13,4 +13,5 @@ export * from './plasma.js';
export * from './simplex-noise.js';
export * from './softglow.js';
export * from './stereographic-projection.js';
export * from './tile-seamless.js';
export * from './waves.js';

View File

@ -0,0 +1,16 @@
import {BaseOperation} from './base.js';
export type TileSeamlessParameters = Record<string, unknown>;
export class TileSeamless extends BaseOperation<TileSeamlessParameters> {
public get default() {
return {};
}
public appendCrop = false;
public name = 'gegl:tile-seamless';
constructor() {
super({});
}
}