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

Add SpinBoxToVector::set(double)

parent d4af6d01
No related branches found
No related tags found
1 merge request!76Update cartesian impedance and arviz
......@@ -125,9 +125,17 @@ namespace armarx
ARMARX_CHECK_EQUAL(set->getSize(), _widgets.size());
for (std::size_t i = 0; i < _widgets.size(); ++i)
{
ARMARX_CHECK_NOT_NULL(set->getNode(i));
_widgets.at(i)->setValue(set->getNode(i)->getJointValue());
}
}
void set(double d)
{
for (auto w : _widgets)
{
w->setValue(d);
}
}
public:
void addWidget(Qwid* s)
{
......
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