mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-14 12:04:29 +00:00

examples are not considered a feature of ThorVG; hence, they are excluded from the src directory. This change allows developers to concentrate more effectively on the core ThorVG sources for practical usages.
17 lines
No EOL
440 B
XML
17 lines
No EOL
440 B
XML
<svg
|
|
viewBox="-40 0 150 100"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<g
|
|
fill="grey"
|
|
transform="rotate(-10 50 100)
|
|
translate(-36 45.5)
|
|
skewX(40)
|
|
scale(1 0.5)">
|
|
<path
|
|
id="heart"
|
|
d="M 10,30 A 20,20 0,0,1 50,30 A 20,20 0,0,1 90,30 Q 90,60 50,90 Q 10,60 10,30 z" />
|
|
</g>
|
|
|
|
<use href="#heart" fill="none" stroke="red" />
|
|
</svg> |