1
42kviews
Write DDA Line Algorithm. Compare DDA with Bresenham line drawing Algorithm.
1 Answer
| written 8.9 years ago by |
A line connects two points. It is a basic element in graphics. To draw a line, you need two points between which you can draw a line. In the following three algorithms, we refer the one point of line as X0,Y0X0,Y0 and the second point of line as X1,Y1X1,Y1
DDA …