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