Skip to content
Snippets Groups Projects
Commit 0e99e57d authored by armar6-demo's avatar armar6-demo Committed by armar-user
Browse files

Allow setting max velocities in helper (Christian)

parent 1a4e1bf3
No related branches found
No related tags found
1 merge request!112Fix/platform vel
......@@ -89,3 +89,10 @@ const
return target_dist < m_pos_reached_threshold and
std::fabs(target_angular_dist) < m_ori_reached_threshold;
}
void
armarx::ObstacleAvoidingPlatformUnitHelper::setMaxVelocities(float max_vel, float max_angular_vel)
{
m_platform_unit->setMaxVelocities(max_vel, max_angular_vel);
}
......@@ -61,6 +61,9 @@ namespace armarx
isFinalTargetReached()
const;
void
setMaxVelocities(float max_vel, float max_angular_vel);
private:
struct target
......
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