cours_progra/q1/livres/ex_cpp/points.h
2023-02-15 13:40:50 +01:00

25 lines
283 B
C++

#ifndef POINTS_H
#define POINTS_H
class Points
{
private:
float x, y;
public:
Points(float x, float y);
void deplace(float, float);
void homothetie(float);
void rotation(float);
float abscisse();
float ordonnee();
float rho();
float theta();
};
#endif /* POINTS_H */