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