From 097f41a11053041b8a348ed9b2c10bfacb7acfdb Mon Sep 17 00:00:00 2001 From: hodasemi Date: Mon, 20 May 2019 14:14:40 +0200 Subject: [PATCH] Remove unnecessary comment --- exercise2/src/bresenham_circle_tool.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/exercise2/src/bresenham_circle_tool.cpp b/exercise2/src/bresenham_circle_tool.cpp index 7a8aaf6..2340879 100644 --- a/exercise2/src/bresenham_circle_tool.cpp +++ b/exercise2/src/bresenham_circle_tool.cpp @@ -49,14 +49,8 @@ void bresenham_circle_tool::draw(int x0, int y0, int x1, int y1) while (y >= x) { - // for each pixel we will - // draw all eight pixels - x++; - // check for decision parameter - // and correspondingly - // update d, x, y if (d > 0) { y--;