QuadraticBezierTo
QuadraticBezierTo(PointF, PointF)
Fügt eine quadratische Bezierkurve am Ende des Pfades hinzu
public void QuadraticBezierTo(PointF point1, PointF point2)
| Parameter | Typ | Beschreibung |
|---|
| point1 | PointF | Richtungs Punkt |
| point2 | PointF | Endpunkt |
Siehe auch
QuadraticBezierTo(float, float, float, float)
Fügt eine quadratische Bezierkurve am Ende des Pfades hinzu
public void QuadraticBezierTo(float x1, float y1, float x2, float y2)
| Parameter | Typ | Beschreibung |
|---|
| x1 | Single | X-Koordinate des Richtungs Punktes |
| y1 | Single | Y-Koordinate des Richtungs Punktes |
| x2 | Single | X-Koordinate des Endpunktes |
| y2 | Single | Y-Koordinate des Endpunktes |
Siehe auch
QuadraticBezierTo(PointF, PointF, uint)
Fügt eine quadratische Bezierkurve an der angegebenen Stelle des Pfades hinzu
public void QuadraticBezierTo(PointF point1, PointF point2, uint index)
| Parameter | Typ | Beschreibung |
|---|
| point1 | PointF | Richtungs Punkt |
| point2 | PointF | Endpunkt |
| index | UInt32 | Index des Segments in PathData |
Ausnahmen
| Ausnahme | Bedingung |
|---|
| ArgumentOutOfRangeException | Segmentindex liegt außerhalb des PathData-Bereichs |
Siehe auch
QuadraticBezierTo(float, float, float, float, uint)
Fügt eine quadratische Bezierkurve an der angegebenen Stelle des Pfades hinzu
public void QuadraticBezierTo(float x1, float y1, float x2, float y2, uint index)
| Parameter | Typ | Beschreibung |
|---|
| x1 | Single | X-Koordinate des Richtungs Punktes |
| y1 | Single | Y-Koordinate des Richtungs Punktes |
| x2 | Single | X-Koordinate des Endpunktes |
| y2 | Single | Y-Koordinate des Endpunktes |
| index | UInt32 | Index des Segments in PathData |
Ausnahmen
| Ausnahme | Bedingung |
|---|
| ArgumentOutOfRangeException | Segmentindex liegt außerhalb des PathData-Bereichs |
Siehe auch