Remove unnecessary comment

This commit is contained in:
hodasemi 2019-05-20 14:14:40 +02:00
parent e2e64daf10
commit 097f41a110

View file

@ -49,14 +49,8 @@ void bresenham_circle_tool::draw(int x0, int y0, int x1, int y1)
while (y >= x) while (y >= x)
{ {
// for each pixel we will
// draw all eight pixels
x++; x++;
// check for decision parameter
// and correspondingly
// update d, x, y
if (d > 0) if (d > 0)
{ {
y--; y--;