GCOP  1.0
posegraph2dview.h
Go to the documentation of this file.
00001 #ifndef GCOP_POSEGRAPH2DVIEW_H
00002 #define GCOP_POSEGRAPH2DVIEW_H
00003 
00004 #include "GL/glu.h"
00005 #include "GL/glut.h"
00006 #include "posegraph2d.h"
00007 #include "view.h"
00008 
00009 
00010 namespace gcop {
00011 
00016   class Posegraph2dView : public View {
00017   public:
00018     
00024     Posegraph2dView(const Posegraph2d &pg);
00025 
00026     virtual void Render();
00027     
00028     virtual bool RenderFrame(int i);
00029   
00030     const Posegraph2d &pg;
00031     
00032     float rgba[4];
00033   };
00034 }
00035 
00036 #endif