This document discusses algorithms for drawing circles using midpoint circle algorithm. It defines key circle concepts like radius, diameter and chord. It then explains the midpoint circle algorithm which uses 8-fold symmetry and computes pixel positions for only 45° sector. The algorithm initializes the first point as (0, radius) and uses a decision parameter F to iteratively calculate the next pixel position as (x+1, y) if F < 0 or (x+1, y-1) if F >= 0 until x >= y. Pseudocode and a C program to implement the algorithm is also provided with an example.