0
|
1 |
<?xml version="1.0" standalone="no"?>
|
|
2 |
<svg width="12cm" height="3.5cm" viewBox="0 0 1200 350" version="1.2" baseProfile="tiny"
|
|
3 |
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
4 |
<desc>Example linecap - demonstrates three stroke-linecap values</desc>
|
|
5 |
<rect x="1" y="1" width="1198" height="348" fill="none" stroke="blue" />
|
|
6 |
<defs>
|
|
7 |
<path id="path1" d="M -125,150 L 0,0 L 125,150" fill="none" />
|
|
8 |
<circle fill="#ffcccc" stroke="none" id="circle1" cx="0" cy="0" r="8"/>
|
|
9 |
</defs>
|
|
10 |
<g transform="translate(200,75)">
|
|
11 |
<use stroke="black" stroke-width="70" xlink:href="#path1" stroke-linejoin="miter"/>
|
|
12 |
<use stroke="#ffcccc" stroke-width="5" xlink:href="#path1"/>
|
|
13 |
<use xlink:href="#circle1"/>
|
|
14 |
<text text-anchor="middle" font-size="50" font-family="Verdana" y="230">'miter' join</text>
|
|
15 |
</g>
|
|
16 |
<g transform="translate(600,75)">
|
|
17 |
<use stroke="black" stroke-width="70" xlink:href="#path1" stroke-linejoin="round"/>
|
|
18 |
<use stroke="#ffcccc" stroke-width="5" xlink:href="#path1"/>
|
|
19 |
<use xlink:href="#circle1"/>
|
|
20 |
<text text-anchor="middle" font-size="50" font-family="Verdana" y="230">'round' join</text>
|
|
21 |
</g>
|
|
22 |
<g transform="translate(1000,75)">
|
|
23 |
<use stroke="black" stroke-width="70" xlink:href="#path1" stroke-linejoin="bevel"/>
|
|
24 |
<use stroke="#ffcccc" stroke-width="5" xlink:href="#path1"/>
|
|
25 |
<use xlink:href="#circle1"/>
|
|
26 |
<text text-anchor="middle" font-size="50" font-family="Verdana" y="230">'bevel' join</text>
|
|
27 |
</g>
|
|
28 |
</svg>
|
|
29 |
|