0
|
1 |
<?xml version="1.0"?>
|
|
2 |
<svg width="12cm" height="4cm" viewBox="0 0 1200 400"
|
|
3 |
xmlns="http://www.w3.org/2000/svg" version="1.2" baseProfile="tiny">
|
|
4 |
<desc>Example line01 - lines expressed in user coordinates</desc>
|
|
5 |
<!-- Show outline of canvas using 'rect' element -->
|
|
6 |
<rect x="1" y="1" width="1198" height="398"
|
|
7 |
fill="none" stroke="blue" stroke-width="2" />
|
|
8 |
<g stroke="green" >
|
|
9 |
<line x1="100" y1="300" x2="300" y2="100"
|
|
10 |
stroke-width="5" />
|
|
11 |
<line x1="300" y1="300" x2="500" y2="100"
|
|
12 |
stroke-width="10" />
|
|
13 |
<line x1="500" y1="300" x2="700" y2="100"
|
|
14 |
stroke-width="15" />
|
|
15 |
<line x1="700" y1="300" x2="900" y2="100"
|
|
16 |
stroke-width="20" />
|
|
17 |
<line x1="900" y1="300" x2="1100" y2="100"
|
|
18 |
stroke-width="25" />
|
|
19 |
</g>
|
|
20 |
</svg>
|