/* nicolas.janey@univ-fcomte.fr */ /* Octobre 2005 */ /* Classe de gestion de translations */ #ifndef TRANSLATION #define TRANSLATION #include "Transformation.h" #include "Direction.h" class Translation : public Transformation { public : Translation(float tx,float ty,float tz); Translation(Direction *d); }; #endif