|
<?xml
version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="220" height="130" xmlns="http://www.w3.org/2000/svg"
version="1.1">
<title>Ein Beispiel fuer eine quadratische Bezierkurven</title>
<!-- Die Bezierkurve beginnt
am Punkt (10,100) und endet auf (200,100). -->
<!-- Der Kontrollpunkt liegt auf (100,5). -->
<path stroke="#FFBB00" stroke-width="3"
fill="none"
d="M 10 100 Q 100 5 200 100"/>
<g>
<circle cx="100" cy="5"
r="3" fill="black"/>
<text x="20" y="10"
font-size="7pt">Kontrollpunkt 1</text>
<line x1="10" y1="100"
x2="100" y2="5" stroke-width="1" stroke="black"/>
<line x1="200" y1="100"
x2="100" y2="5" stroke-width="1" stroke="black"/>
</g>
</svg>
|
|