Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/camera/src/world_entities/cameraman.h @ 10257

Last change on this file since 10257 was 10257, checked in by gfilip, 17 years ago

bla bla bla

File size: 697 bytes
Line 
1#ifndef _CAMERAMAN_H
2#define _CAMERAMAN_H
3
4#include "p_node.h"
5#include "camera.h"
6#include <vector>
7
8class cameraman {
9
10  private:
11    Camera* currentCam;
12   // int camNo;
13
14
15
16  public:
17    std::vector<Camera*> cameras;
18    cameraman();
19    void setCam(int CameraNo);
20    void createCam();
21    void moveCam(int x, int y, int z,  int camNo);
22    void moveCurrCam(int x, int y, int z);
23    void changeTarget(int camNo, PNode* target);
24    void changeCurrTarget(PNode* target);
25    void atachCurrTarget(PNode* target);
26    void jumpCam(int x, int y, int z, int camNo);
27    void jumpCurrCam(int x, int y, int z);
28    void changeSpeed(float speed);
29    void testCam();
30
31
32
33};
34
35#endif /* _CAMERAMAN_H */
Note: See TracBrowser for help on using the repository browser.