From 567134ebf8fa32806475280b8080f07790c109e1 Mon Sep 17 00:00:00 2001 From: Bauke Date: Thu, 10 Mar 2022 18:27:54 +0100 Subject: [PATCH] Add gegl:tile-seamless. --- source/gegl/exports.ts | 1 + source/gegl/tile-seamless.ts | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 source/gegl/tile-seamless.ts diff --git a/source/gegl/exports.ts b/source/gegl/exports.ts index 8c1bd09..4737365 100644 --- a/source/gegl/exports.ts +++ b/source/gegl/exports.ts @@ -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'; diff --git a/source/gegl/tile-seamless.ts b/source/gegl/tile-seamless.ts new file mode 100644 index 0000000..b72ad1d --- /dev/null +++ b/source/gegl/tile-seamless.ts @@ -0,0 +1,16 @@ +import {BaseOperation} from './base.js'; + +export type TileSeamlessParameters = Record; + +export class TileSeamless extends BaseOperation { + public get default() { + return {}; + } + + public appendCrop = false; + public name = 'gegl:tile-seamless'; + + constructor() { + super({}); + } +}