GCOP  1.0
boxview.h
Go to the documentation of this file.
00001 #ifndef GCOP_BOXVIEW_H
00002 #define GCOP_BOXVIEW_H
00003 
00004 #include "GL/glu.h"
00005 #include "GL/glut.h"
00006 #include "geom3dview.h"
00007 #include <Eigen/Dense>
00008 
00009 
00010 namespace gcop {
00011 
00012   using namespace Eigen;
00013 
00017   class BoxView : public Geom3dView {
00018   public:
00019     
00020     BoxView();
00021     BoxView(const Vector3d &d, Matrix4d *g = 0);
00022 
00023     void RenderGeom();
00024 
00025     Vector3d d;  
00026   };
00027 }
00028 
00029 #endif