3 references to AddCurve
System.Drawing.Common (3)
System\Drawing\Drawing2D\GraphicsPath.cs (3)
507public void AddCurve(params Point[] points) => AddCurve(points.AsSpan(), 0.5f); 510public void AddCurve(Point[] points, float tension) => AddCurve(points.AsSpan(), tension); 531public void AddCurve(ReadOnlySpan<Point> points) => AddCurve(points, 0.5f);