Add gegl:tile-seamless.
This commit is contained in:
		
							parent
							
								
									010f2363bb
								
							
						
					
					
						commit
						567134ebf8
					
				| 
						 | 
				
			
			@ -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';
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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({});
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue