Describe the advantages and disadvantages of Bresenham’s line drawing algorithm.
Advantages: Only involves integer calculations. It outperforms DDA in terms of speed. Using a shift register, you may implement multiplication by two in hardware. Involves less expensive operations such as addition and subtraction More accurate Bresenham’s approach does not perform rounding Disadvantages: Bresenham’s line drawing method ignores anti-aliasing. It may not result in a smooth line.