This document contains code for drawing various shapes and lines in C++ using graphics functions. It includes classes for a pixel, line, and circle. The line class contains methods for drawing a line using DDA and Bresenham's algorithms. Additional methods allow drawing thick lines and dotted lines. The circle class inherits from line and contains a method for drawing a circle by putting pixels on the circumference. The document provides code examples and outputs for each task.