source:
anuga_work/development/anugavis/src/camera.h
@
5339
Last change on this file since 5339 was 5339, checked in by jack, 15 years ago | |
---|---|
File size: 330 bytes |
Line | |
---|---|
1 | #ifndef CAMERA_H |
2 | #define CAMERA_H |
3 | |
4 | #define CAMERA_YAW_STEP 0.1 |
5 | #define CAMERA_PITCH_STEP 0.1 |
6 | #define CAMERA_TRACK_STEP 2.0 |
7 | #define CAMERA_STRAFE_STEP 2.0 |
8 | |
9 | extern void camera_pitch(float theta); |
10 | extern void camera_yaw(float theta); |
11 | extern void camera_track(float dist); |
12 | extern void camera_strafe(float dist); |
13 | |
14 | #endif |
Note: See TracBrowser
for help on using the repository browser.