/* nicolas.janey@univ-fcomte.fr */ /* Octobre 2005 */ /* Classe de gestion de rotations */ #ifndef ROTATION #define ROTATION #include "Transformation.h" #include "Direction.h" class Rotation : public Transformation { public : Rotation(float a,float ax,float ay,float az); Rotation(float a,Direction *d); }; #endif