// CSCI 201 -- Lab 5 -- stonehenge.cpp // Your Name Goes Here #include "ezwin.h" #include "rect.h" SimpleWindow MyWin("Stonehenge before", 17.0, 9.0) ; int ApiMain() { MyWin.Open() ; // Draw the four columns RectangleShape Column1(MyWin, 3.0, 6.0, Blue, 2.0, 6.0) ; Column1.Draw() ; RectangleShape Column2(MyWin, 7.0, 6.0, Blue, 2.0, 6.0) ; Column2.Draw() ; RectangleShape Column3(MyWin, 10.0, 6.0, Blue, 2.0, 6.0) ; Column3.Draw() ; RectangleShape Column4(MyWin, 14.0, 6.0, Blue, 2.0, 6.0) ; Column4.Draw() ; return 0 ; } // Called when the program is terminated // Do not change this routine !! int ApiEnd() { MyWin.Close() ; return 0 ; }