mirror of
https://github.com/svg/svgo.git
synced 2026-01-27 07:02:06 +03:00
14 lines
382 B
Plaintext
14 lines
382 B
Plaintext
Correctly optimize transform with same sign non-zero shears and.
|
|
|
|
===
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128">
|
|
<rect x="-45" y="-77" height="3" width="8" transform="matrix(0,-1,-1,0,0,0)" />
|
|
</svg>
|
|
|
|
@@@
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128">
|
|
<rect x="-45" y="-77" height="3" width="8" transform="rotate(90)scale(-1 1)"/>
|
|
</svg>
|