0
20kviews
Write the mid-point Circle drawing algorithm. Using mid-point circle algorithm plot the circle whose radius = 10 units.
1 Answer
| written 7.8 years ago by |
1. Read the radius (r) of the circle.
2. Initialize starting position as
x = 0 y = r .
3. Calculate initial value or decision parameter as
P = 1.25 – r.
4. do
{
plot (x, y)
if (d < 0)
{
x …