2 references to AddClosedCurve
System.Drawing.Common (2)
System\Drawing\Drawing2D\GraphicsPath.cs (2)
588
public void AddClosedCurve(Point[] points, float tension) =>
AddClosedCurve
(points.OrThrowIfNull().AsSpan(), tension);
592
public void AddClosedCurve(params ReadOnlySpan<Point> points) =>
AddClosedCurve
(points, 0.5f);