24 lines
563 B
C++
24 lines
563 B
C++
#ifndef CERCLE_H_INCLUDED
|
|
#define CERCLE_H_INCLUDED
|
|
|
|
#include "point.h"
|
|
|
|
class cercle: public point
|
|
{
|
|
|
|
private:
|
|
int m_rayon;
|
|
|
|
public:
|
|
cercle(point& pixel, int r);
|
|
void afficher(Bmp& imageTemp);
|
|
void afficherDecal(Bmp& imageTemp);
|
|
void afficherBeta(Bmp& imageTemp);
|
|
void afficherPlein(Bmp& imageTemp);
|
|
//void geoTranslation(SHORT x);
|
|
//void geoTranslation(SHORT x,SHORT y);
|
|
void geoHomothetie(point& centre, float k);
|
|
//void geoRotation(point& centre, double degree);
|
|
};
|
|
|
|
#endif // CERCLE_H_INCLUDED
|