Assignment 3 .Bresenham’s circle drawing algorithm
Bresenham’s circle drawing algorithm
Set initial values of (xc, yc) and (x, y)
Set decision parameter d to d = 3 – (2 * r).
do while x < = y
Call 8way drawCircle(int x, int y).
Increment value of x.
If d < 0, set d = d + (4*x) + 6
Else, set d = d +...
rajkumarpatil.hashnode.dev2 min read