source: GTP/trunk/App/Demos/Illum/Illumination Networks Demo [OpenGL]/src/ThirdPersonCamera.h @ 845

Revision 845, 321 bytes checked in by szirmay, 18 years ago (diff)
Line 
1#pragma once
2#include <my3dgraphres\camera.h>
3
4class ThirdPersonCamera :
5        public Camera
6{
7public:
8        ThirdPersonCamera(void);
9        ~ThirdPersonCamera(void);
10
11        void SetViewandProjection(void);
12        void Move(Axis axis, double distance);
13        void setViewforBbox();
14
15private:
16        float rot;
17        float yaw;
18        float dist;
19
20};
Note: See TracBrowser for help on using the repository browser.