The document describes the mid-point circle algorithm for drawing circles. It uses eight-way symmetry to only calculate points for one octant of the circle, then uses symmetry to get the remaining points. At each x-coordinate, it must choose between two possible y-coordinates by calculating the mid-point between them and determining which side of the circle it falls on based on comparing the mid-point to the circle equation. It iterates this process, incrementally updating values for efficiency, until all points along the top-right octant are drawn, then uses symmetry to plot the full circle.