[fxtf-drafts] [filter-effects-1] transfomation support for filter effect (#485)

dustdfg has just created a new issue for https://github.com/w3c/fxtf-drafts:

== [filter-effects-1] transfomation support for filter effect ==
https://drafts.fxtf.org/filter-effects-1/

Hello!

Current version of the spec does not allow using `transform` attribute for filters. To rotate filter by 30 degrees we need to use several groups to apply reverse transform then apply filter and then apply transform. 

The example:
```svg
  <g transform="rotate(30)">
    <g filter="url(#filter)" >
      <g transform="rotate(-30)">
        ....
      </g>
    </g>
  </g>
```

To prevent similar problem for patterns `SVG` defines `patternTransform` similar to common `transform` attribute.

I propose to add `filterTransform` attribute

Please view or discuss this issue at https://github.com/w3c/fxtf-drafts/issues/485 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Monday, 9 January 2023 17:17:03 UTC