I have a canvas and draw curve with this code:
using (Graphics g = Graphics.FromImage(canvas.BackgroundImage))
{
g.DrawCurve(pen, points);
points
is array that I fill that by mouse location points.
In the result I see some jagged lines that I didn't draw.
You can see them here(in red rectangles):
What can i do about this?
What you is see is the somewhat unlucky combination of the default for
Linejoin
, which isMiter
and the default forMiterLimit
, which is 10.Instead you have a choice of either picking one of the other
LineJoin
options or reducing theMiterLimit
to say less than half thePen.Width
..