| 16 | void System(const std::string &filename); |
| 17 | |
| 18 | int main() |
| 19 | { |
| 20 | std::cout.imbue(std::locale("")); |
| 21 | srand((unsigned)time(0)); |
| 22 | |
| 23 | //DoLoopThruPolygons(); // check all |
| 24 | //DoLoopThruPolygons(46); // display one |
| 25 | DoLoopThruPolygons(110,113); // display a range |
| 26 | |
| 27 | return 0; |
| 28 | } |
| 29 | |
| 30 | void DoLoopThruPolygons(int start, int end) |
| 31 | { |
nothing calls this directly
no test coverage detected