// CSCI 201 -- Lab 3 -- stonehenge.cpp // Your Name Here #include #include "rect.h" int ApiMain() { int IgnoreMe ; cout << "Enter any number to start" << endl ; cin >> IgnoreMe ; SimpleWindow MyWin("Stonehenge before", 17.0, 9.0) ; 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() ; cout << "Type ^C to exit" << endl ; cin >> IgnoreMe ; MyWin.Close() ; return 0 ; }