vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
rectangle.h
Go to the documentation of this file.
1 #ifndef RECTANGLE_H_
2 #define RECTANGLE_H_
3 
4 #include "movingturtle.h"
5 
6 namespace AP_LSystem {
10 class Rectangle : public MovingTurtle
11 {
12 private:
13 
14 public:
15  Rectangle(void){};
16  ~Rectangle(void){};
17 
21  virtual int drawStep( double dist );
22 
23  virtual int initialize( ) {return LS_OK;}
24  virtual int finalize( ) {return LS_OK;}
25 };
26 }
27 
28 #endif