Compare commits

...

5 Commits

Author SHA1 Message Date
Bauke a98738cff8
Create 2022-03-29. 2022-03-29 22:35:04 +02:00
Bauke 783b0ef665
Add 2022-03-15. 2022-03-15 17:12:42 +01:00
Bauke 08d0931ac4
Add 2022-03-14. 2022-03-14 13:20:51 +01:00
Bauke f9721b8bc6
Add 2022-03-13. 2022-03-13 13:47:00 +01:00
Bauke bac3544f22
Add 2022-03-12. 2022-03-12 15:44:43 +01:00
6 changed files with 305 additions and 0 deletions

View File

@ -0,0 +1,51 @@
import {
DiffractionPatterns,
Generic,
MedianBlur,
Mirrors,
Newsprint,
Waterpixels,
} from '../../gegl/exports.js';
import Project from '../../project.js';
const [width, height] = [3840, 2160];
const project: Project = {
createInputImage: false,
name: '2022-03-12',
operations: [
new DiffractionPatterns({
brightness: 0.382,
polarization: 0.67,
scattering: 53.21,
height,
width,
}),
new Waterpixels({
smoothness: 2,
}),
new Generic('gegl:edge-neon', {
amount: 0.5,
radius: 3,
}),
new Mirrors({
oX: 0.365,
oY: 0.694,
trimX: 0.375,
trimY: 0.375,
}),
new Newsprint({
turbulence: 0.996,
}),
new MedianBlur({
neighborhood: 'diamond',
}),
],
resetAlpha: false,
resolution: {
width,
height,
},
};
export default project;

View File

@ -0,0 +1,53 @@
import {
Cartoon,
Mirrors,
Oilify,
Plasma,
StereographicProjection,
Waterpixels,
} from '../../gegl/exports.js';
import Project from '../../project.js';
const [width, height] = [3840, 2160];
const project: Project = {
createInputImage: false,
name: '2022-03-13',
operations: [
new Plasma({
seed: 65_198_886,
height,
width,
}),
new Cartoon({
maskRadius: 50,
pctBlack: 1,
}),
new Waterpixels({
size: 64,
}),
new Oilify({
maskRadius: 8,
}),
new Mirrors({
nSegs: 8,
oX: 0.829,
oY: 0.812,
trimX: 0.325,
trimY: 0.09,
}),
new StereographicProjection({
tilt: -73.42,
}),
new Oilify({
maskRadius: 8,
}),
],
resetAlpha: false,
resolution: {
width,
height,
},
};
export default project;

View File

@ -0,0 +1,51 @@
import {
Cartoon,
DiffractionPatterns,
Generic,
MedianBlur,
Mirrors,
} from '../../gegl/exports.js';
import Project from '../../project.js';
const [width, height] = [3840, 2160];
const project: Project = {
createInputImage: false,
name: '2022-03-14',
operations: [
new DiffractionPatterns({
height,
width,
}),
new Mirrors({
nSegs: 7,
oX: 0.347,
oY: 0.1,
rAngle: 13,
trimX: 0.051,
trimY: 0.253,
}),
new Cartoon({
maskRadius: 50,
pctBlack: 1,
}),
new MedianBlur({
radius: 5,
}),
new Generic('gegl:edge', {
algorithm: 'prewitt',
amount: 10,
borderBehavior: 'clamp',
}),
new MedianBlur({
radius: 5,
}),
],
resetAlpha: false,
resolution: {
width,
height,
},
};
export default project;

View File

@ -0,0 +1,90 @@
import {
Bloom,
Cartoon,
Crop,
FocusBlur,
Generic,
Mirrors,
Newsprint,
Waves,
} from '../../gegl/exports.js';
import Project from '../../project.js';
const [width, height] = [3840, 2160];
const project: Project = {
createInputImage: false,
name: '2022-03-15',
operations: [
new Generic('gegl:spiral', {
balance: 0.424,
color1: '#3078d2',
color2: '#ff00dc',
direction: 'cw',
height,
radius: 918.7,
type: 'linear',
width,
x: 0.307,
y: 0.542,
}),
new Crop({
height,
width,
}),
new Cartoon({
maskRadius: 50,
pctBlack: 1,
}),
new Newsprint({
colorModel: 'rgb',
pattern2: 'line',
pattern3: 'diamond',
pattern4: 'pssquare',
period2: 105.96,
period3: 30.46,
period4: 125.83,
turbulence: 0.182,
}),
new Bloom({
radius: 2.08,
softness: 87.94,
strength: 165.29,
}),
new Cartoon({
maskRadius: 50,
pctBlack: 1,
}),
new Waves({
amplitude: 65,
clamp: true,
period: 500,
phi: 0.5,
x: 0,
y: 1,
}),
new Mirrors({
rAngle: 30,
nSegs: 3,
oX: 0.312,
oY: 1,
trimX: 0.162,
trimY: 0.031,
}),
new FocusBlur({
blurRadius: 5.4,
blurType: 'lens',
focus: 0.154,
highlightFactor: 0.75,
midpoint: 0.38,
radius: 0.802,
}),
],
resetAlpha: false,
resolution: {
width,
height,
},
};
export default project;

View File

@ -0,0 +1,50 @@
import {
Bloom,
Cartoon,
FocusBlur,
Mirrors,
Oilify,
Plasma,
} from '../../gegl/exports.js';
import Project from '../../project.js';
const [width, height] = [3840, 2160];
const project: Project = {
createInputImage: false,
name: '2022-03-29',
operations: [
new Plasma({
height,
seed: 3_474_742_930,
turbulence: 2,
width,
}),
new Cartoon({
maskRadius: 50,
pctBlack: 1,
}),
new FocusBlur({
blurType: 'lens',
}),
new Mirrors({
oX: 0.406,
oY: 0.588,
}),
new Oilify({
maskRadius: 8,
}),
new Bloom({
radius: 2.08,
softness: 87.94,
strength: 165.29,
}),
],
resetAlpha: false,
resolution: {
width,
height,
},
};
export default project;

View File

@ -6,6 +6,11 @@ import p2022_03_08 from './2022-03-08.js';
import p2022_03_09 from './2022-03-09.js';
import p2022_03_10 from './2022-03-10.js';
import p2022_03_11 from './2022-03-11.js';
import p2022_03_12 from './2022-03-12.js';
import p2022_03_13 from './2022-03-13.js';
import p2022_03_14 from './2022-03-14.js';
import p2022_03_15 from './2022-03-15.js';
import p2022_03_29 from './2022-03-29.js';
const projects: Project[] = [
p2022_03_06,
@ -14,6 +19,11 @@ const projects: Project[] = [
p2022_03_09,
p2022_03_10,
p2022_03_11,
p2022_03_12,
p2022_03_13,
p2022_03_14,
p2022_03_15,
p2022_03_29,
];
export default projects;