home *** CD-ROM | disk | FTP | other *** search
- #include <conio.h>
- #include <stdlib.h>
- #include <graphics.h>
- #include <bios.h>
- #include "display.hpp"
- #include "dot.hpp"
- #include "line.hpp"
- #include "arc.hpp"
- #include "polygon.hpp"
- #include "circle.hpp"
-
-
- char path[] = {"\\bin\\tc\\bgi"};
- Graphics_Display theDisplay(path);
-
-
- main()
- {
- int i;
- int key;
- Point vertice(500.0,500.0);
-
- Circle circ(100,vertice);
- circ.draw();
-
- getch();
- }
-