Changeset 70 in flair-src for trunk/lib/FlairSimulator/src/FixedCamera.h


Ignore:
Timestamp:
09/06/16 17:49:32 (7 years ago)
Author:
Sanahuja Guillaume
Message:

simu cameras

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/FlairSimulator/src/FixedCamera.h

    r69 r70  
    2626class FixedCamera : public VisualizationCamera {
    2727public:
    28   FixedCamera(core::Vector3D position,float rotateSpeed = -500.0f, float zoomSpeed = 4.0f);
     28  FixedCamera(std::string name,core::Vector3D position,float rotateSpeed = -500.0f, float zoomSpeed = .1f);
    2929  ~FixedCamera();
    3030
     
    3232
    3333private:
     34  float sat(float value);
    3435  irr::core::position2df RotateStart;
    3536  bool Rotating;
     37  float rotateSpeed;
     38  float zoomSpeed;
    3639  float RotY, RotZ;
     40  float fov;
    3741};
    3842
Note: See TracChangeset for help on using the changeset viewer.