1
0
mirror of https://github.com/svg/svgo.git synced 2026-01-25 18:41:39 +03:00
Files
svgo/test/plugins/convertTransform.14.svg.txt
2024-02-05 21:47:31 +00:00

22 lines
494 B
Plaintext

Test to make sure rotate(180) inverts scale(1).
===
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200">
<rect x="20" y="30" width="40" height="50" transform="matrix(-1,-4.371139e-8,4.371139e-8,-1,139.2007,136.8)"/>
</svg>
@@@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200">
<rect x="20" y="30" width="40" height="50" transform="translate(139.2007 136.8)scale(-1)"/>
</svg>
@@@
{
"degPrecision":4,
"floatPrecision":6,
"transformPrecision":8
}