1
0
mirror of https://github.com/svg/svgo.git synced 2026-01-27 07:02:06 +03:00
Files
svgo/test/plugins/convertTransform.11.svg.txt
2024-02-05 21:47:31 +00:00

16 lines
517 B
Plaintext

Test with 180 degree rotation, translation, and no scaling in matrix. Matrix not changed,
since it is shorter than translate(5,7)scale(-1).
===
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" viewBox="-100 -100 100 100">
<rect x="0" y="0" width="10" height="20" transform="matrix(-1,0,0,-1,5,7)"/>
</svg>
@@@
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" viewBox="-100 -100 100 100">
<rect x="0" y="0" width="10" height="20" transform="matrix(-1 0 0 -1 5 7)"/>
</svg>