Replies: 1 comment 1 reply
-
There are two ways to join open paths (not containing
With regard to filling both methods are the same, but with regard to drawing the second method joins with line segment the end of the first open path to the beginning of the second one. If the paths are not open, i.e. containing So for you probably you should just ensure that the paths starts with newpath = SVGPath(path1).normalise().toString() + SVGPath(path2).normalise().toString(); |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Am wondering is there any feature in plan which could allow to joins disjointed line and arc segments into single path. currently i have noticed that squares or rects are output as 4 or 3 different paths which make it harder to do operations on those shapes like for fill like operations the square lines should be interconnected in single path.
Example : like this one outline split into multiple paths
however on the above one we cant do operations like fill , so i manually tried to combined paths for fill operations
Squares example split into multiple paths will be good if represented as single path so that fill like operation can be performed on it
Beta Was this translation helpful? Give feedback.
All reactions