Replace Generic('gegl:focus-blur') with FocusBlur.
This commit is contained in:
parent
93ad125a7f
commit
7c85ea0eea
|
@ -1,5 +1,5 @@
|
|||
import {
|
||||
Generic,
|
||||
FocusBlur,
|
||||
Mirrors,
|
||||
Newsprint,
|
||||
SimplexNoise,
|
||||
|
@ -30,7 +30,7 @@ const project: Project = {
|
|||
new Softglow(),
|
||||
new Newsprint(),
|
||||
new StereographicProjection({tilt: 123}),
|
||||
new Generic('gegl:focus-blur', {
|
||||
new FocusBlur({
|
||||
blurType: 'gaussian',
|
||||
blurRadius: 11.5,
|
||||
radius: 0.9,
|
||||
|
@ -48,7 +48,7 @@ const project: Project = {
|
|||
period4: 200,
|
||||
angle4: 55,
|
||||
}),
|
||||
new Generic('gegl:focus-blur', {
|
||||
new FocusBlur({
|
||||
blurType: 'gaussian',
|
||||
blurRadius: 11.5,
|
||||
radius: 0.9,
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import {
|
||||
Crop,
|
||||
Generic,
|
||||
FocusBlur,
|
||||
Newsprint,
|
||||
StereographicProjection,
|
||||
} from './gegl/exports.js';
|
||||
|
@ -22,7 +23,7 @@ const project: Project = {
|
|||
colorModel: 'cmyk',
|
||||
period: 4,
|
||||
}),
|
||||
new Generic('gegl:focus-blur', {
|
||||
new FocusBlur({
|
||||
blurRadius: 9.72,
|
||||
blurType: 'lens',
|
||||
focus: 0,
|
||||
|
|
Loading…
Reference in New Issue