0
52kviews
Explain DDA line drawing algorithm. What are the disadvantages of DDA algorithm?

Subject: Computer Graphics

Topic: Output Primitives

Difficulty: Medium

2 Answers
2
975views
  • Floating point arithmetic in DDA algorithm is still time consuming.

  • The algorithm is orientation dependent. Hence end point accuracy is poor.

  • Although DDA is fast, the accumulation of round-off error in successive additions of floating point increment, however can cause the calculation pixel position to drift away from the true …

Create a free account to keep reading this post.

and 2 others joined a min ago.

2
441views

Before discussing specific line drawing algorithms it is useful to note the general requirements for such algorithms. These requirements specify the desired characteristics of line.

• The line should appear as a straight line and it should start and end accurately.

• The line should be displayed with constant brightness …

Create a free account to keep reading this post.

and 4 others joined a min ago.

Please log in to add an answer.