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