[╯°□°]╯︵┻━┻
Goldberg Simulator 20000
|
00001 #ifndef PRJ_STRING3D_H 00002 #define PRJ_STRING3D_H 00003 00004 00005 #include "Disp.h" 00006 #include "Vect.h" // pour PI 00007 00008 class String3d:public Disp{ 00009 public: 00010 String3d(string const& text,double const& theta=0, double const& phi=0, double const& rho=0,double size=.01); 00011 void disp(vector<bool> options=vector<bool>(10,false)); 00012 ostream& cdisp(ostream&); 00013 void set(string const&); 00014 private: 00015 string text; 00016 double rho; 00017 double phi; 00018 double theta; 00019 double size; 00020 }; 00021 00022 #endif