Changeset 70 in flair-src for trunk/lib/FlairSimulator/src/FixedCamera.h
- Timestamp:
- 09/06/16 17:49:32 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairSimulator/src/FixedCamera.h
r69 r70 26 26 class FixedCamera : public VisualizationCamera { 27 27 public: 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); 29 29 ~FixedCamera(); 30 30 … … 32 32 33 33 private: 34 float sat(float value); 34 35 irr::core::position2df RotateStart; 35 36 bool Rotating; 37 float rotateSpeed; 38 float zoomSpeed; 36 39 float RotY, RotZ; 40 float fov; 37 41 }; 38 42
Note:
See TracChangeset
for help on using the changeset viewer.