vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
straightpipe.h
Go to the documentation of this file.
1 #ifndef STRAIGHTPIPE_H_
2 #define STRAIGHTPIPE_H_
3 
4 #include "loftturtle.h"
5 
6 namespace AP_LSystem {
10 class StraightPipe : public LoftTurtle
11 {
12 private:
16  void initializePipe();
17 
21  void finalizePipe();
22 
26  void drawCap();
27 public:
28  StraightPipe(void){};
29  ~StraightPipe(void){};
30 
31  virtual int preStep( );
32 
37  virtual int insideStep( );
38  virtual int initialize( );
39  virtual int finalize( );
40 
41 };
42 }
43 
44 #endif