You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all thanks a lot for the implementations, they are really useful.
I think though, that the call to the CirclePlotPoints made in the Bresenham's algorithm. CirclePlotPoints(x_centre, y_centre, x, y) x += 1
needs to be called AFTER increasing "x". x += 1 CirclePlotPoints(x_centre, y_centre, x, y)
Otherwise, since the function is calling CirclePlotPoints at the beginning it is possible that the same point will be drawn twice.
BR,
Ixent.
The text was updated successfully, but these errors were encountered:
Hello!
First of all thanks a lot for the implementations, they are really useful.
I think though, that the call to the CirclePlotPoints made in the Bresenham's algorithm.
CirclePlotPoints(x_centre, y_centre, x, y)
x += 1
needs to be called AFTER increasing "x".
x += 1
CirclePlotPoints(x_centre, y_centre, x, y)
Otherwise, since the function is calling CirclePlotPoints at the beginning it is possible that the same point will be drawn twice.
BR,
Ixent.
The text was updated successfully, but these errors were encountered: