|
<?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 Bezierkurven</title>
<!-- Eine Bezierkurve vom
Startpunkt (10,100) bis zum Endpunkt (200, 100). -->
<!-- Der erste Kontrollpunkt liegt auf (10,50), der
zweite auf (200,50). -->
<path stroke="#FFBB00" stroke-width="3"
fill="none"
d="M 10 100 C 10 50 200 50 200 100"/>
<text x="40" y="120" font-size="11pt">Kubische
Bezierkurve</text>
<g>
<circle cx="10" cy="50"
r="3" fill="black"/>
<text x="10" y="40"
font-size="7pt">Kontrollpunkt 1</text>
<line x1="10" y1="100"
x2="10" y2="50" stroke-width="1" stroke="black"/>
<circle cx="200" cy="50"
r="3" fill="black"/>
<text x="140" y="40"
font-size="7pt">Kontrollpunkt 2</text>
<line x1="200" y1="100"
x2="200" y2="50" stroke-width="1" stroke="black"/>
</g>
</svg>
|
|