mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 21:27:54 +00:00
18f0d7e871
Makes it easier to edit the files. So if we press 'end of line' we are really at the end of line.
14 lines
158 B
C++
14 lines
158 B
C++
#ifndef CAMERA_HH
|
|
#define CAMERA_HH
|
|
class Camera {
|
|
|
|
public:
|
|
Camera();
|
|
void look();
|
|
|
|
double pos[3];
|
|
double tgt[3];
|
|
double up[3];
|
|
};
|
|
#endif
|