COMPUTER SCIENCE AND ENGINEERING
COMPUTER GRAPHICS
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
|
Eight way symmetric
|
|
Four way symmetric
|
|
Both a & b
|
|
Either a or b
|
Detailed explanation-1: -Circle is an eight-way symmetric figure. The shape of circle is the same in all quadrants. In each quadrant, there are two octants. If the calculation of the point of one octant is done, then the other seven points can be calculated easily by using the concept of eight-way symmetry.
Detailed explanation-2: -The mid-point circle algorithm was developed by Jack Bresenham, who we heard about earlier. Bresenham’s patent for the algorithm can be viewed here.
Detailed explanation-3: -Syntax : circle(x, y, radius); where, (x, y) is center of the circle. ‘radius’ is the Radius of the circle.
Detailed explanation-4: -Answer-D, Explanation-The midpoint circle drawing algorithm also uses the eight way symmetry of the circle to generate.
Detailed explanation-5: -Bresenham’s Circle Drawing Algorithm is a circle drawing algorithm that selects the nearest pixel position to complete the arc. The unique part of this algorithm is that is uses only integer arithmetic which makes it, significantly, faster than other algorithms using floating point arithmetic in classical processors.