00001 // Camera Class by Alan Baylis 2001 00002 00003 #ifndef CameraH 00004 #define CameraH 00005 00006 #include "object.h" 00007 #include "matrix.h" 00008 00009 class CAMERA : public OBJECT 00010 { 00011 public: 00012 CAMERA(); 00013 ~CAMERA(); 00014 00015 void Reset(); 00016 void Update(); 00017 void Apply(); 00018 00019 MATRIX Matrix; 00020 }; 00021 00022 00023 #endif 00024