SideFork.hh
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #ifndef SIDEFORK_HH
00028 #define SIDEFORK_HH
00029
00030 class Body;
00031
00032 class ShrimpSideFork
00033 {
00034
00035 public: ShrimpSideFork(Model *model);
00036 public: virtual ~ShrimpSideFork();
00037 public: virtual Body *GetTopBar();
00038 public: virtual Body *GetBottomBar();
00039 public: virtual Body *GetFrontBar();
00040 public: virtual Body *GetBackBar();
00041 public: virtual void Translate(double x, double y, double z);
00042
00043
00044 private: double wheelDiam;
00045 private: Body *topBar;
00046 private: Body *bottomBar;
00047 private: Body *frontBar;
00048 private: Body *backBar;
00049 private: Model *model;
00050 private: HingeJoint *topFrontJoint, *topBackJoint, *bottomBackJoint, *bottomFrontJoint;
00051
00052 };
00053
00054 #endif
Last updated 12 September 2005 21:38:45
|