mirror of
https://github.com/nasa/trick.git
synced 2024-12-29 01:18:54 +00:00
14 lines
161 B
C++
14 lines
161 B
C++
|
#ifndef _CAMERA_H_
|
||
|
#define _CAMERA_H_
|
||
|
class Camera {
|
||
|
|
||
|
public:
|
||
|
Camera();
|
||
|
void look();
|
||
|
|
||
|
double pos[3];
|
||
|
double tgt[3];
|
||
|
double up[3];
|
||
|
};
|
||
|
#endif
|