FullWheel.hh
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 #ifndef FULLWHEEL_HH
00027 #define FULLWHEEL_HH
00028
00029 #include "Wheel.hh"
00030
00031 namespace gazebo
00032 {
00033 class Hinge2Joint;
00034
00035
00036
00046
00047
00048 class FullWheel: public Wheel
00049 {
00051 public: FullWheel ();
00052
00054 public: virtual ~FullWheel();
00055
00057 public: void Connect(Joint *joint, int type);
00058
00060 public: void Update(float speed, float steer);
00061
00063 public: void SetSteerTorque(float newTorque);
00064
00066 public: void SetTorque(float newTorque);
00067
00069 public: void SetSteerPD(float kp, float kd);
00070
00072 public: void SetSteerMaxAngle(float maxAngle);
00073
00075 public: void Stop();
00076
00078 public: void SetSuspension(float spring, float damping, float step);
00079
00080
00081 private: Hinge2Joint *joint;
00082 private: float steerTorque;
00083 private: float cmdSteer;
00084 private: float steerMaxAngle;
00085
00086
00087 };
00088
00090
00091
00092 }
00093
00094 #endif