working on svg

This commit is contained in:
Stephan Richter
2020-09-07 01:00:57 +02:00
parent 3583a62667
commit 6db6623d8e
25 changed files with 134 additions and 170 deletions

3
svg/DiagNE.svg Normal file
View File

@@ -0,0 +1,3 @@
<svg width="100" height="100" viewbox="0 0 100 100">
<polygon points="35,0 65,0 100,35 100,65" />
</svg>

After

Width:  |  Height:  |  Size: 105 B

3
svg/DiagSW.svg Normal file
View File

@@ -0,0 +1,3 @@
<svg width="100" height="100" viewbox="0 0 100 100">
<polygon points="0,35 65,100 35,100 0,65" />
</svg>

After

Width:  |  Height:  |  Size: 105 B

3
svg/DiagWN.svg Normal file
View File

@@ -0,0 +1,3 @@
<svg width="100" height="100" viewbox="0 0 100 100">
<polygon points="35,0 65,0 0,65 0,35" />
</svg>

After

Width:  |  Height:  |  Size: 101 B

3
svg/EndE.svg Normal file
View File

@@ -0,0 +1,3 @@
<svg width="100" height="100" viewbox="0 0 100 100">
<rect x="40" y="35" width="60" height="30" />
</svg>

After

Width:  |  Height:  |  Size: 107 B

3
svg/EndW.svg Normal file
View File

@@ -0,0 +1,3 @@
<svg width="100" height="100" viewbox="0 0 100 100">
<rect x="0" y="35" width="60" height="30" />
</svg>

After

Width:  |  Height:  |  Size: 106 B

3
svg/StraightH.svg Normal file
View File

@@ -0,0 +1,3 @@
<svg width="100" height="100" viewbox="0 0 100 100">
<rect x="0" y="35" width="100" height="30" />
</svg>

After

Width:  |  Height:  |  Size: 107 B

3
svg/StraightV.svg Normal file
View File

@@ -0,0 +1,3 @@
<svg width="100" height="100" viewbox="0 0 100 100">
<rect x="35" y="0" width="35" height="100" />
</svg>

After

Width:  |  Height:  |  Size: 107 B

4
svg/TurnoutSE.svg Normal file
View File

@@ -0,0 +1,4 @@
<svg width="100" height="100" viewbox="0 0 100 100">
<rect x="35" y="0" width="30" height="100" />
<polygon points="35,100 100,35 100,65 65,100" />
</svg>

After

Width:  |  Height:  |  Size: 156 B

4
svg/TurnoutSW.svg Normal file
View File

@@ -0,0 +1,4 @@
<svg width="100" height="100" viewbox="0 0 100 100">
<rect x="35" y="0" width="30" height="100" />
<polygon points="0,35 65,100 35,100 0,65" />
</svg>

After

Width:  |  Height:  |  Size: 152 B

4
svg/TurnoutWS.svg Normal file
View File

@@ -0,0 +1,4 @@
<svg width="100" height="100" viewbox="0 0 100 100">
<rect x="0" y="35" width="100" height="30" />
<polygon points="0,35 65,100 35,100 0,65" />
</svg>

After

Width:  |  Height:  |  Size: 152 B