GCOP
1.0
|
00001 #ifndef GCOP_CYLINDERVIEW_H 00002 #define GCOP_CYLINDERVIEW_H 00003 00004 #include "GL/glu.h" 00005 #include "GL/glut.h" 00006 #include "geom3dview.h" 00007 00008 00009 namespace gcop { 00010 00011 using namespace Eigen; 00012 00016 class CylinderView : public Geom3dView { 00017 public: 00018 00019 CylinderView(double r = .5, double h = 1, Matrix4d *g = 0); 00020 virtual ~CylinderView(); 00021 00022 void RenderGeom(); 00023 00024 double r; 00025 double h; 00026 GLUquadricObj *qobj; 00027 }; 00028 } 00029 00030 #endif