Add 2022-03-10.
This commit is contained in:
		
							parent
							
								
									d4580975c6
								
							
						
					
					
						commit
						5c706f289b
					
				| 
						 | 
				
			
			@ -0,0 +1,49 @@
 | 
			
		|||
import {Crop, Generic, Newsprint} from './gegl/exports.js';
 | 
			
		||||
import Project from './project.js';
 | 
			
		||||
 | 
			
		||||
const [width, height] = [3840, 2160];
 | 
			
		||||
 | 
			
		||||
const project: Project = {
 | 
			
		||||
  createInputImage: false,
 | 
			
		||||
  name: '2022-03-10',
 | 
			
		||||
  operations: [
 | 
			
		||||
    new Generic('gegl:cell-noise', {
 | 
			
		||||
      scale: 0.5,
 | 
			
		||||
      seed: 2_762_328_325,
 | 
			
		||||
    }),
 | 
			
		||||
    new Crop({height, width}),
 | 
			
		||||
    new Newsprint({
 | 
			
		||||
      angle4: 75.85,
 | 
			
		||||
      colorModel: 'rgb',
 | 
			
		||||
      pattern2: 'circle',
 | 
			
		||||
      pattern4: 'cross',
 | 
			
		||||
      period2: 42.38,
 | 
			
		||||
      period3: 0,
 | 
			
		||||
      period4: 135.1,
 | 
			
		||||
      turbulence: 0.454,
 | 
			
		||||
    }),
 | 
			
		||||
    new Generic('gegl:waves', {
 | 
			
		||||
      amplitude: 67.6,
 | 
			
		||||
      clamp: true,
 | 
			
		||||
      period: 514.8,
 | 
			
		||||
      phi: -0.529,
 | 
			
		||||
      samplerType: 'cubic',
 | 
			
		||||
      x: -0.25,
 | 
			
		||||
      y: -0.75,
 | 
			
		||||
    }),
 | 
			
		||||
    new Crop({height, width}),
 | 
			
		||||
    new Generic('gegl:bloom', {
 | 
			
		||||
      radius: 20,
 | 
			
		||||
      softness: 57,
 | 
			
		||||
      strength: 90,
 | 
			
		||||
      threshold: 10,
 | 
			
		||||
    }),
 | 
			
		||||
  ],
 | 
			
		||||
  resetAlpha: false,
 | 
			
		||||
  resolution: {
 | 
			
		||||
    width,
 | 
			
		||||
    height,
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
export default project;
 | 
			
		||||
| 
						 | 
				
			
			@ -12,6 +12,7 @@ import d2022_03_06 from './2022-03-06.js';
 | 
			
		|||
import d2022_03_07 from './2022-03-07.js';
 | 
			
		||||
import d2022_03_08 from './2022-03-08.js';
 | 
			
		||||
import d2022_03_09 from './2022-03-09.js';
 | 
			
		||||
import d2022_03_10 from './2022-03-10.js';
 | 
			
		||||
 | 
			
		||||
async function main(): Promise<void> {
 | 
			
		||||
  const cli = meow(
 | 
			
		||||
| 
						 | 
				
			
			@ -47,6 +48,7 @@ async function main(): Promise<void> {
 | 
			
		|||
    d2022_03_07,
 | 
			
		||||
    d2022_03_08,
 | 
			
		||||
    d2022_03_09,
 | 
			
		||||
    d2022_03_10,
 | 
			
		||||
  ].filter((project) => project.name.startsWith(cli.flags.filter));
 | 
			
		||||
 | 
			
		||||
  for (const {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Reference in New Issue