00001 #ifndef POINT_H 00002 #define POINT_H 00003 00004 #include "ConMath.h" 00005 #include "timer.h" 00006 00007 class Point 00008 { 00009 public: 00010 Point (void) : p (0, 0, 0), r (0) { } 00011 Point (const Vector &v) : p (v), r (0) { } 00012 00013 void Set (const Vector &v) { p = v; } 00014 const Vector &Get (void) { return p; } 00015 00016 void Render (void); 00017 00018 private: 00019 Vector p; 00020 Timer t; 00021 double r; 00022 }; 00023 00024 #endif
1.4.3-20050530