0
20kviews
Write the mid-point Circle drawing algorithm. Using mid-point circle algorithm plot the circle whose radius = 10 units.
1 Answer
1
2.7kviews

Mid-Point Circle drawing algorithm :

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 …

Create a free account to keep reading this post.

and 5 others joined a min ago.

Please log in to add an answer.