#include <ArActionMovementParameters.h>
Inheritance diagram for ArActionMovementParameters:
Public Member Functions | |
void | addToConfig (ArConfig *config, const char *section, const char *prefix=NULL) |
Adds to the ArConfig given, in section, with prefix. | |
ArActionMovementParameters (const char *name="MovementParameters") | |
Constructor. | |
virtual ArActionDesired * | fire (ArActionDesired currentDesired) |
Fires the action, returning what the action wants to do. | |
virtual ArActionDesired * | getDesired (void) |
Gets what this action wants to do (for display purposes). | |
void | setParameters (double maxVel=0, double maxNegVel=0, double transAccel=0, double transDecel=0, double rotVelMax=0, double rotAccel=0, double rotDecel=0) |
Sets the parameters (don't use this if you're using the addToConfig). | |
virtual | ~ArActionMovementParameters () |
Destructor. | |
Protected Attributes | |
ArActionDesired | myDesired |
double | myMaxNegVel |
double | myMaxRotVel |
double | myMaxVel |
double | myRotAccel |
double | myRotDecel |
double | myTransAccel |
double | myTransDecel |
Definition at line 38 of file ArActionMovementParameters.h.
|