vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ShowFDHModel.h
Go to the documentation of this file.
1 #ifndef SHOWFDHMODEL_H
2 #define SHOWFDHMODEL_H
3 
4 #include <vrecko/Ability.h>
5 
7 
8 #include <osg/Geode>
9 #include <osg/Geometry>
10 
11 
12 using namespace vrecko;
13 
14 namespace base {
15 
16 class ShowFDHModel: public Ability {
17  public:
18  ShowFDHModel();
20 
21  void initialize(void);
22  void update(void);
23 
24  protected:
25  osg::Geode *_fdh_geode;
26  osg::Geometry **_fdh_geom;
27  osg::MatrixTransform *transf;
28  double *vert;
29 
30  bool _first;
31 };
32 
33 }
34 
35 #endif