Skip to content
Snippets Groups Projects
Commit 2e9dfe32 authored by Fabian Reister's avatar Fabian Reister
Browse files

reachability gui: + natural posture

parent 3f4fb9f9
No related branches found
No related tags found
1 merge request!79Feature/natural robot placement to master
......@@ -582,7 +582,11 @@ void reachabilityWindow::createReach()
std::string measure = std::string(UICreate.comboBoxQualityMeasure->currentText().toLatin1());
if (measure != "Reachability")
if(measure == "NaturalPosture")
{
reachSpace.reset(new NaturalPosture(robot));
}
else if (measure != "Reachability")
{
reachSpace.reset(new Manipulability(robot));
ManipulabilityPtr manipSpace = std::dynamic_pointer_cast<Manipulability>(reachSpace);
......
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