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