Skip to content
Snippets Groups Projects
Commit cfcf7a72 authored by Raphael Grimm's avatar Raphael Grimm
Browse files

Update remote gui of NJointCartesianWaypointControllerConfig

parent 1c4e2b01
No related branches found
No related tags found
1 merge request!76Update cartesian impedance and arviz
......@@ -36,7 +36,10 @@ namespace armarx::RemoteGui
.max(1000)
.value(val.forceThreshold)
.decimals(3));
cs.emplace_back(new RemoteGui::HSpacer);
cs.emplace_back(RemoteGui::makeCheckBox(name + "_forceThresholdInRobotRootZ")
.value(val.forceThresholdInRobotRootZ)
.label("Threshold only in root z"));
cs.emplace_back(new RemoteGui::Widget);
cs.emplace_back(RemoteGui::makeCheckBox(name + "_optimizeNullspaceIfTargetWasReached")
......@@ -55,6 +58,7 @@ namespace armarx::RemoteGui::detail::_getValue
{
getValue(cfg.wpCfg, values, name);
getValue(cfg.forceThreshold, values, name + "_forceThreshold");
getValue(cfg.forceThresholdInRobotRootZ, values, name + "_forceThresholdInRobotRootZ");
getValue(cfg.optimizeNullspaceIfTargetWasReached, values, name + "_optimizeNullspaceIfTargetWasReached");
}
}
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