Skip to content

Commit

Permalink
Remove unused hand property from MTC tutorial (#420)
Browse files Browse the repository at this point in the history
Co-authored-by: AndyZe <[email protected]>
(cherry picked from commit f21b044)
  • Loading branch information
stephanie-eng authored and mergify[bot] committed Jul 30, 2023
1 parent 1855ba9 commit 9db8206
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,10 @@ mtc::Task MTCTaskNode::createTask()
// In fact, `task` itself is a SerialContainer by default.
{
auto grasp = std::make_unique<mtc::SerialContainer>("pick object");
task.properties().exposeTo(grasp->properties(), { "eef", "hand", "group", "ik_frame" });
task.properties().exposeTo(grasp->properties(), { "eef", "group", "ik_frame" });
// clang-format off
grasp->properties().configureInitFrom(mtc::Stage::PARENT,
{ "eef", "hand", "group", "ik_frame" });
{ "eef", "group", "ik_frame" });
// clang-format on

{
Expand Down Expand Up @@ -268,10 +268,10 @@ mtc::Task MTCTaskNode::createTask()

{
auto place = std::make_unique<mtc::SerialContainer>("place object");
task.properties().exposeTo(place->properties(), { "eef", "hand", "group", "ik_frame" });
task.properties().exposeTo(place->properties(), { "eef", "group", "ik_frame" });
// clang-format off
place->properties().configureInitFrom(mtc::Stage::PARENT,
{ "eef", "hand", "group", "ik_frame" });
{ "eef", "group", "ik_frame" });
// clang-format on

/****************************************************
Expand Down

0 comments on commit 9db8206

Please sign in to comment.