blob: c0a7e460318900dc3facbdc787e92975370e55b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
<?xml version="1.0"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20cm" height="20cm" viewBox="0 0 100 100">
<desc>
The Hurd Boxes and Arrows logo.
Converted to SVG by Thomas Schwinge and Colin Leitner at 09/2007.
We used the metafont original from Stephen McCamant (1997).
available on http://www.gnu.org/graphics/hurd_mf.html.
TODO. The flection of some of the curves is different from the
original. We don't know yet how to exactly reproduce
METAFONT's ``A..B'' syntax. Also the thickness of the lines
may be a different one. Elaborate on the copyright situation
and licensing conditions.
</desc>
<defs>
<style type="text/css">
#boxes, #arrows {
stroke: black;
stroke-width: 3;
}
#boxes { fill: white; }
</style>
</defs>
<g transform="translate(0 100) scale(1 -1) translate(-5 5)">
<g id="arrows" fill="none" stroke-linecap="round">
<path d="M 40 80 Q 20 80 20 65 L 20 60"/>
<path d="M 15 65 L 20 60 L 25 65"/>
<path d="M 50 70 Q 50 50 62.5 50 L 70 50"/>
<path d="M 65 45 L 70 50 L 65 55"/>
<path d="M 60 20 Q 100 20 100 50 Q 100 80 65 80 L 60 80"/>
<path d="M 65 75 L 60 80 L 65 85"/>
<path d="M 80 40 Q 80 0 50 0 Q 20 0 20 35 L 20 40"/>
<path d="M 15 35 L 20 40 L 25 35"/>
</g>
<g id="boxes">
<rect x="10" y="40" width="20" height="20"/>
<rect x="40" y="70" width="20" height="20"/>
<rect x="70" y="40" width="20" height="20"/>
<rect x="40" y="10" width="20" height="20"/>
</g>
</g>
</svg>
|