/* nicolas.janey@univ-fcomte.fr */ /* Octobre 2005 */ /* Classe de gestion */ /* de transformations geometriques */ #ifndef TRANSFORMATION #define TRANSFORMATION #include "Matrice.h" #include "Vecteur.h" class Transformation : public Matrice { public : Transformation(void); Transformation(float m[4][4]); ~Transformation(void); void transforme(Vecteur *v); void compose(Transformation *t); }; #endif