File arm.hpp¶
File List > robot_dart > robots > arm.hpp
Go to the documentation of this file
#ifndef ROBOT_DART_ROBOTS_ARM_HPP
#define ROBOT_DART_ROBOTS_ARM_HPP
#include "robot_dart/robot.hpp"
namespace robot_dart {
namespace robots {
class Arm : public Robot {
public:
Arm(const std::string& urdf = "arm.urdf") : Robot(urdf)
{
fix_to_world();
set_position_enforced(true);
}
};
} // namespace robots
} // namespace robot_dart
#endif