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
Percentages in patterns should be relative to the viewport of the <svg> they are defined in. Right now they are interpreted as relative to the viewport of the referencing shape element.
This could either mean somehow saving the viewport of each <svg> element (but when parsing the <pattern> the <svg> element it is defined in might not have been parsed yet), parsing all patterns in an initial pass (to an intermediate format) and then reference them in a second pass parsing all shape elements.
Percentages in patterns should be relative to the viewport of the
<svg>
they are defined in. Right now they are interpreted as relative to the viewport of the referencing shape element.This could either mean somehow saving the viewport of each
<svg>
element (but when parsing the<pattern>
the<svg>
element it is defined in might not have been parsed yet), parsing all patterns in an initial pass (to an intermediate format) and then reference them in a second pass parsing all shape elements.To test this, use the following svg:
It should show two circles of the same size, and not one big one and a cluster of four small ones.
The text was updated successfully, but these errors were encountered: