3 references to AddCurve
System.Drawing.Common (3)
System\Drawing\Drawing2D\GraphicsPath.cs (3)
507
public void AddCurve(params Point[] points) =>
AddCurve
(points.AsSpan(), 0.5f);
510
public void AddCurve(Point[] points, float tension) =>
AddCurve
(points.AsSpan(), tension);
531
public void AddCurve(ReadOnlySpan<Point> points) =>
AddCurve
(points, 0.5f);