QuadraticBezierTo

QuadraticBezierTo(PointF, PointF)

Fügt am Ende des Pfades eine quadratische Bezierkurve hinzu

public void QuadraticBezierTo(PointF point1, PointF point2)
ParameterTypBeschreibung
point1PointFRichtungs-Punkt
point2PointFEndpunkt

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)
ParameterTypBeschreibung
x1SingleX-Koordinate des Richtungs-Punkts
y1SingleY-Koordinate des Richtungs-Punkts
x2SingleX-Koordinate des Endpunkts
y2SingleY-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)
ParameterTypBeschreibung
point1PointFRichtungs-Punkt
point2PointFEndpunkt
indexUInt32Index des Segments in PathData

Ausnahmen

AusnahmeBedingung
ArgumentOutOfRangeExceptionSegmentindex 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)
ParameterTypBeschreibung
x1SingleX-Koordinate des Richtungs-Punkts
y1SingleY-Koordinate des Richtungs-Punkts
x2SingleX-Koordinate des Endpunkts
y2SingleY-Koordinate des Endpunkts
indexUInt32Index des Segments in PathData

Ausnahmen

AusnahmeBedingung
ArgumentOutOfRangeExceptionSegmentindex liegt außerhalb des PathData-Bereichs

Siehe auch