trick/trick_sims/SIM_satellite/models/Satellite/graphics/Camera.hh
Michael Vetter 18f0d7e871 Remove trailing whitespaces
Makes it easier to edit the files. So if we press 'end of line' we are
really at the end of line.
2016-11-08 10:25:07 +01:00

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