renforcement + livre

This commit is contained in:
Debucquoy
2022-11-09 16:22:14 +01:00
parent d574695633
commit 948d17166a
15 changed files with 186 additions and 1 deletions

24
livres/ex_cpp/points.h Normal file
View File

@@ -0,0 +1,24 @@
#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 */