ARGoS
3
A parallel, multi-engine simulator for swarm robotics
|
#include <gripper_default_actuator.h>
Public Member Functions | |
CGripperDefaultActuator () | |
virtual | ~CGripperDefaultActuator () |
virtual void | SetRobot (CComposableEntity &c_entity) |
Sets the entity associated to this actuator. | |
virtual void | Update () |
Updates the state of the entity associated to this actuator. | |
virtual void | Reset () |
Resets the actuator to the state it had just after Init(). |
Definition at line 23 of file gripper_default_actuator.h.
Definition at line 16 of file gripper_default_actuator.cpp.
virtual argos::CGripperDefaultActuator::~CGripperDefaultActuator | ( | ) | [inline, virtual] |
Definition at line 30 of file gripper_default_actuator.h.
void argos::CGripperDefaultActuator::Reset | ( | ) | [virtual] |
Resets the actuator to the state it had just after Init().
The default implementation of this method does nothing.
Reimplemented from argos::CCI_Actuator.
Definition at line 38 of file gripper_default_actuator.cpp.
void argos::CGripperDefaultActuator::SetRobot | ( | CComposableEntity & | c_entity | ) | [virtual] |
Sets the entity associated to this actuator.
When a controller is created, all the sensors and actuators are created, too. This function is called right before the Init()
method of the actuator is called.
c_entity | The entity to associate to this actuator. |
Implements argos::CSimulatedActuator.
Definition at line 22 of file gripper_default_actuator.cpp.
void argos::CGripperDefaultActuator::Update | ( | ) | [virtual] |
Updates the state of the entity associated to this actuator.
Implements argos::CSimulatedActuator.
Definition at line 31 of file gripper_default_actuator.cpp.