Skip to content
Snippets Groups Projects
Commit f61e0abf authored by Patrick Dormanns's avatar Patrick Dormanns
Browse files

code quality

parent 2a08e1c0
No related branches found
No related tags found
1 merge request!53Implement 'PointAt'-skill
#include "aron_conversions.h"
#include <RobotAPI/libraries/aron/common/aron_conversions.h>
namespace armarx::control::pointing
{
void
......@@ -18,15 +20,17 @@ namespace armarx::control::pointing
}
}
using namespace armarx::aron;
void
skills::fromAron(const arondto::PointAtParams& dto, core::Pointing::Parameters& bo)
{
fromAron(dto.side, bo.side);
bo.frame = dto.frame;
bo.framedTarget = dto.framedTarget;
bo.handShape = dto.handShape;
bo.maxVelocity = dto.maxVelocity;
bo.maxAcceleration = dto.maxAcceleration;
armarx::aron::fromAron(dto.frame, bo.frame);
armarx::aron::fromAron(dto.framedTarget, bo.framedTarget);
armarx::aron::fromAron(dto.handShape, bo.handShape);
armarx::aron::fromAron(dto.maxVelocity, bo.maxVelocity);
armarx::aron::fromAron(dto.maxAcceleration, bo.maxAcceleration);
}
core::Pointing::Parameters
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment