15 lines
666 B
XML
15 lines
666 B
XML
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="200" height="200">
|
|
<!-- Test that the orientation of markers is computed correctly for Arc segments in paths.-->
|
|
<defs>
|
|
<marker id="marker" refX="0" refY="10"
|
|
markerWidth="20" markerHeight="20"
|
|
markerUnits="userSpaceOnUse" orient="auto">
|
|
<path d="M0,0 L0,20 L20,10 Z" fill="lime"/>
|
|
</marker>
|
|
</defs>
|
|
|
|
<!-- Hand-code a rounded rectangle -->
|
|
<path d="M50,30 L150,30 A20,20,0,0,1,170,50 L170,150 A20,20,0,0,1,150,170 L50,170 A20,20,0,0,1,30,150 L30,50 A20,20,0,0,1,50,30 Z"
|
|
marker-mid="url(#marker)" stroke="blue" stroke-width="5" fill="none"/>
|
|
</svg>
|