mirror of
https://github.com/svg/svgo.git
synced 2025-09-14 09:49:20 +03:00
22 lines
411 B
XML
22 lines
411 B
XML
Combine own child transform and inherited
|
|
|
|
===
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg">
|
|
<g attr1="val1">
|
|
<g transform="rotate(45)">
|
|
<path transform="scale(2)" d="..."/>
|
|
</g>
|
|
<path d="..."/>
|
|
</g>
|
|
</svg>
|
|
|
|
@@@
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg">
|
|
<g attr1="val1">
|
|
<path transform="rotate(45) scale(2)" d="..."/>
|
|
<path d="..."/>
|
|
</g>
|
|
</svg>
|