00001 #ifndef CAMERAAUTO_H 00002 #define CAMERAAUTO_H 00003 00004 #include "auto.h" 00005 00006 00007 class CameraAuto : public Auto 00008 { 00009 public: 00010 CameraAuto(); 00011 ~CameraAuto(); 00012 00013 int camera_x, camera_y; // center of view in source frame 00014 // 0 to source width/height 00015 float zoom; // amount to expand source 00016 int radius_in, radius_out; // radius of turn in or turn out, 00017 // depending on which neighbor 00018 // isn't in a line with this point 00019 int acceleration_in, acceleration_out; // acceleration into and out of the point 00020 }; 00021 00022 00023 00024 00025 00026 #endif
1.4.4