Discussion on Career and Computer Graphics

DDA algorithm

DDA algorithm

by Aminul Islam Rabby -
Number of replies: 1

Why Bresenham line drawing algorithm is better than DDA?

In reply to Aminul Islam Rabby

Re: DDA algorithm

by Muhammad Shahnewaz (171-15-1367) -
DDA uses floating points whereas the Bresenham algorithm uses fixed points. DDA round off the coordinates to the nearest integer but the Bresenham algorithm does not. Bresenham algorithm is much accurate and efficient than DDA. Bresenham algorithm can draw circles and curves with much more accuracy than DDA.