The document describes two algorithms for drawing lines on a graph:
1. The DDA (Digital Differential Analyzer) line drawing algorithm which calculates the slope of the line and uses incremental steps to determine each new pixel coordinate.
2. Bresenham's line drawing algorithm which uses a decision parameter to determine whether the next pixel is directly above/below or diagonal to the current pixel in order to draw lines with integer coordinates.
Related topics: