The document describes algorithms for scan converting lines and circles in raster graphics.
For line drawing, it discusses direct solutions, the digital difference analyzer (DDA) algorithm, and the midpoint line algorithm. The midpoint line algorithm uses incremental calculations and the sign of a decision variable to determine whether to select the east or northeast pixel at each step.
For circle drawing, it describes using the implicit equation and symmetry to scan convert circles centered at the origin. It then presents the midpoint circle algorithm, which similarly uses a decision variable and incremental updates to select between the east and southeast pixels at each step.