/* nicolas.janey@univ-fcomte.fr */ /* Octobre 2005 */ /* Classe de gestion de scales */ #ifndef SCALE #define SCALE #include "Transformation.h" #include "Direction.h" class Scale : public Transformation { public : Scale(float rx,float ry,float rz); }; #endif