00001
00002
00003
00004 #ifndef TRACKREP_H
00005 #define TRACKREP_H
00006
00007 #include "gui/DisplayRep.h"
00008 #include "geometry/Track.h"
00009
00010 class TrackRep : public gui::DisplayRep {
00011 public:
00012 TrackRep(const Track& t):m_track(t){}
00013
00014 void update();
00015
00016
00017 static bool useColor;
00018 static unsigned charged_color_index,
00019 neutral_color_index;
00020 static float delta;
00021
00022
00023 static float minStepSize;
00024
00025
00026
00027 private:
00028 const Track& m_track;
00029
00030 };
00031 #endif // TRACKREP_H
00032
00033