Reputation: 5413
I have an svg path element that is flipped and when I insert it into the document I have to transform it using transform="matrix(1 0 0 -1 0 0)"
. When this statement is executed, does the SVG Path element's data commands get transformed? Can I successfully get the new data commands, if it creates one, after the transformation? Or like I assume, the path element's data command remain the same.
Upvotes: 0
Views: 453
Reputation: 7526
you can use this little online tool: http://treebuilder.de/svg/transformer/index.html for a quick result.
Upvotes: 1