vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
hermitpipe.h
Go to the documentation of this file.
1 #ifndef HERMITPIPE_H_
2 #define HERMITPIPE_H_
3 
4 #include "straightpipe.h"
5 
6 namespace AP_LSystem {
7 class HermitPipe : public StraightPipe
8 {
9 private:
10  void initializePipe();
11  void finalizePipe();
12  void drawCap();
13 public:
14  HermitPipe(void){};
15  ~HermitPipe(void){};
16 
17  virtual int drawStep( double dist );
18 
19  virtual int initialize( );
20  virtual int finalize( );
21 
22 };
23 }
24 
25 #endif