You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just a few things about how you define your shadow filter:
You are adding a useless (as I understand it) feGaussianBlur element, since feGaussianBlur elements don't have to be children of feDropShadow, and since you don't give any attributes to this feGaussianBlur element, you can just remove it, here:
Just a few things about how you define your shadow filter:
You are adding a useless (as I understand it)
feGaussianBlurelement, sincefeGaussianBlurelements don't have to be children offeDropShadow, and since you don't give any attributes to thisfeGaussianBlurelement, you can just remove it, here:geoviz/src/effect/shadow.js
Line 47 in ffe5e5c
feDropShaowisn't supported in Inkscape (see https://gitlab.com/inkscape/inkscape/-/issues/4534), so the whole group (SVGgelement) that is linked to this filter isn't displayed in Inkscape (see also Export plante magrit#154 about it and riatelab/magrit@c34519b to see the fix I implemented in Magrit, usingfeFlood,feGaussianBlurandfeOffsetinstead offeDropShadow).Also related to drop shadows, I guess you have a small error in the
shadowfunction documentation and could replaceblurbyshadowhere:geoviz/src/effect/shadow.js
Line 17 in ffe5e5c