Moka controlers
 All Classes Namespaces Files Functions Variables Typedefs Enumerator Friends Macros
parameter-eye-position.hh
Go to the documentation of this file.
1 /*
2  * lib-controler : Un contrôleur générique de scène 3D.
3  * Copyright (C) 2004, Moka Team, Université de Poitiers, Laboratoire SIC
4  * http://www.sic.sp2mi.univ-poitiers.fr/
5  * Copyright (C) 2009, Guillaume Damiand, CNRS, LIRIS,
6  * guillaume.damiand@liris.cnrs.fr, http://liris.cnrs.fr/
7  *
8  * This file is part of lib-controler
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU Lesser General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public License
21  * along with this program. If not, see <http://www.gnu.org/licenses/>.
22  */
23 
24 //******************************************************************************
25 #ifndef PARAMETER_EYE_POSITION_HH
26 #define PARAMETER_EYE_POSITION_HH
27 //******************************************************************************
28 #include "parameter.hh"
29 //******************************************************************************
44  {
45  public:
50 
53  CParameterEyePosition(int ANbRef = 0);
55  CParameter * copy() const;
56 
59  virtual ~CParameterEyePosition();
60 
62 
67 
72  virtual void save(std::ostream &);
73 
78  virtual void load(std::istream &);
79 
84  virtual void reinit();
85 
87 
92 
97  float getRotationAlpha() const;
98 
105  void setRotationAlpha(float);
106 
111  float getRotationBeta() const;
112 
119  void setRotationBeta(float);
120 
125  float getDistance() const;
126 
133  void setDistance(float);
134 
141  void incRotationAlpha(float);
142 
149  void incRotationBeta(float);
150 
157  void incDistance(float);
158 
159 
160 
161 
166  float getPasAvancement() const;
167 
168 
175  void setPasAvancement(float);
176 
177 
182  float getAngleRotation() const;
183 
184 
185 
192  void setAngleRotation(float);
193 
195 
197  virtual int getType() const;
198 
200  friend std::ostream&
201  operator<<(std::ostream&,const CParameterEyePosition &);
202 
203  friend std::istream&
204  operator>>(std::istream&, CParameterEyePosition &);
205 
206  private:
208  float FRotationAlpha;
209 
211  float FRotationBeta;
212 
214  float FDistance;
215 
217  float FPasAvancement;
218 
220  float FAngleRotation;
221 
222  };
223 
224 #endif // PARAMETER_EYE_POSITION_HH
225 //******************************************************************************