mirror of
https://github.com/nasa/trick.git
synced 2025-01-13 08:19:53 +00:00
14 lines
159 B
C++
14 lines
159 B
C++
#ifndef CAMERA_HH
|
|
#define CAMERA_HH
|
|
class Camera {
|
|
|
|
public:
|
|
Camera();
|
|
void look();
|
|
|
|
double pos[3];
|
|
double tgt[3];
|
|
double up[3];
|
|
};
|
|
#endif
|