Changeset 44 in flair-dev for trunk/include/FlairSimulator
- Timestamp:
- Jan 6, 2017, 1:58:28 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/FlairSimulator/FixedCamera.h
r36 r44 26 26 class FixedCamera : public VisualizationCamera { 27 27 public: 28 FixedCamera(std::string name,core::Vector3D position,core::Vector3D lookat=core::Vector3D(0,0,0),float rotateSpeed = - 500.0f, float zoomSpeed = .05f);28 FixedCamera(std::string name,core::Vector3D position,core::Vector3D lookat=core::Vector3D(0,0,0),float rotateSpeed = -3.0f, float zoomSpeed = .05f); 29 29 ~FixedCamera(); 30 30 … … 32 32 33 33 private: 34 float sat(float value);35 34 irr::core::position2df RotateStart; 36 irr::core::vector3df rotation,target;37 35 bool Rotating; 38 36 float rotateSpeed; 39 37 float zoomSpeed; 40 38 float fov; 41 bool init;39 irr::core::vector3df target,cameraAxeY; 42 40 }; 43 41
Note:
See TracChangeset
for help on using the changeset viewer.