mirror of
https://github.com/nasa/trick.git
synced 2025-01-16 17:59:53 +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
|