GCOP
1.0
|
00001 #ifndef GCOP_PLOTVIEW_H 00002 #define GCOP_PLOTVIEW_H 00003 00004 #include "GL/glu.h" 00005 #include "GL/glut.h" 00006 #include "view.h" 00007 #include <Eigen/Dense> 00008 00009 00010 namespace gcop { 00011 00012 using namespace Eigen; 00013 00017 class PlotView : public View { 00018 public: 00019 00025 PlotView(const char *name = 0, Matrix4d *g = 0); 00026 00027 virtual ~PlotView(); 00028 00029 virtual void Render(); 00030 00031 00032 00037 void SetColor(const double rgba[4]); 00038 00039 double rgba[4]; 00040 }; 00041 } 00042 00043 #endif