QuadraticBezierTo
QuadraticBezierTo(PointF, PointF)
Fügt am Ende des Pfades eine quadratische Bezierkurve 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 am Ende des Pfades eine quadratische Bezierkurve hinzu
public void QuadraticBezierTo(float x1, float y1, float x2, float y2)
Parameter | Typ | Beschreibung |
---|
x1 | Single | X-Koordinate des Richtungs-Punkts |
y1 | Single | Y-Koordinate des Richtungs-Punkts |
x2 | Single | X-Koordinate des Endpunkts |
y2 | Single | Y-Koordinate des Endpunkts |
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-Punkts |
y1 | Single | Y-Koordinate des Richtungs-Punkts |
x2 | Single | X-Koordinate des Endpunkts |
y2 | Single | Y-Koordinate des Endpunkts |
index | UInt32 | Index des Segments in PathData |
Ausnahmen
Ausnahme | Bedingung |
---|
ArgumentOutOfRangeException | Segmentindex liegt außerhalb des PathData-Bereichs |
Siehe auch