| 1234567891011121314151617181920212223 |
- #ifndef _drawellipse_h_
- #define _drawellipse_h_
- #include "../Object/point.h"
- #include "../Object/rectangle.h"
-
- class CDrawEllipse
- {
- public:
- int top;
- int bottom;
- int left;
- int right;
-
- CDrawEllipse();
- virtual ~CDrawEllipse();
- void PutPixEllipse(void (*ptFonction) (int, int),float xc,float yc,float x,float y);
- void myDrawEllipse(void (*ptFonction) (int, int));
- };
-
- #endif
|