3 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);
System.Drawing.Common.Tests (1)
System\Drawing\Drawing2D\GraphicsPathTests.cs (1)
655
gpi.
AddClosedCurve
([new(1, 1), new(2, 2), new(3, 3)], 0.5f);