Remove unnecessary comment
This commit is contained in:
parent
e2e64daf10
commit
097f41a110
1 changed files with 0 additions and 6 deletions
|
@ -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--;
|
||||||
|
|
Loading…
Reference in a new issue