if (dx > dy)
Steps = absolute(dx);
else
Steps = absolute(dy);
Xincrement = dx / (float) steps;
Yincrement = dy / (float) steps;
Put the pixel by successfully incrementing x and y coordinates accordingly and complete the drawing of the line.
for(int v=0; v < Steps; v++) {
x = x + Xincrement;
y = y + Yincrement;
putpixel(x,y);
}
Given coordinate of two points A(x1, y1) and B(x2, y2). The task to find all the intermediate points required for drawing line AB on the computer screen of pixels. Note that every pixel has integer coordinates.
Below are some assumptions to keep algorithm simple.
Table to check the next point from previous
| <p align="center">When m < 1</p> | <p align="center">When m > 1 </p> |
| ——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————- | ————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————— |
| <p align="center">Po = 2dy-dx </p> | <p align="center">Po = 2dx-dy </p> |
| <table><tr><td>When P < 0</td><td>When P >= 0</td></tr><tr><td>xi+1 = xi + 1</td><td>xi+1 = xi + 1</td></tr><tr><td>yi+1 = yi</td><td>yi+1 = yi + 1</td></tr><tr><td>Pi+1 = Pi + 2dy</td><td>Pi+1 = Pi + 2dy - 2dx</td></tr></table> | <table><tr><td>When P < 0</td><td>When P >= 0</td></tr><tr><td>xi+1 = xi</td><td>xi+1 = xi + 1</td></tr><tr><td>yi+1 = yi + 1</td><td>yi+1 = yi+1</td></tr><tr><td>Pi+1 = Pi + 2dx</td><td>Pi+1 = Pi + 2dx - 2dy</td></tr></table> |
Equation of circle
: x2 + y2 = r2The first thing we can notice to make our circle drawing algorithm more efficient is that circles centred at (xc, yc) have symmetry.
Symmetries in a circle:
This can be decided by following the steps below.
Whether the mid-point lies inside or outside the circle can be decided by using the formula:-
Given a circle centered at (0,0) and radius r and a point p(x,y)
if F(p) < 0 // the point is inside the circle.
else if F(p) = 0 // the point is on the perimeter
else F(p) > 0 // the point is outside the circle
putpixel(x + x_centre, y + y_centre, WHITE);
if (r > 0)
{
putpixel(x + x_centre, -y + y_centre, WHITE);
putpixel(y + x_centre, x + y_centre, WHITE);
putpixel(-y + x_centre, x + y_centre, WHITE);
int P = 1 - r;
while (x <= y)
{
x++;
if (P <= 0){
P = P + 2 * x + 1;
}else{
y--;
P = P + 2 * x - 2 * y + 1;
}
if (x > y)
break;
putpixel(x + x_centre, y + y_centre, WHITE);
putpixel(-x + x_centre, y + y_centre, WHITE);
putpixel(x + x_centre, -y + y_centre, WHITE);
putpixel(-x + x_centre, -y + y_centre, WHIT
if (x != y){
putpixel(y + x_centre, x + y_centre, WHITE);
putpixel(-y + x_centre, x + y_centre, WHITE);
putpixel(y + x_centre, -x + y_centre, WHITE);
putpixel(-y + x_centre, -x + y_centre, WHITE);
}
}