/// This class represents a polygon.
class Polygon
{
public:
    /// Draw the polygon
    void draw();
};
