Skip to content

Commit

Permalink
Merge branch 'production' into fill_vikreturns
Browse files Browse the repository at this point in the history
  • Loading branch information
rosen.diankov@gmail.com committed Oct 21, 2023
2 parents ee6df1b + 61fdf3c commit 60c9232
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ Version 0.132.0

- Add IkFilterInfo and IkFailureAccumulator to allow for fast accumulation of IK failures.

=======
* When loading connected body, also have to prefix "grippername" and "grippernames"

Version 0.131.2
===============

Expand Down
2 changes: 2 additions & 0 deletions src/libopenrave/robotconnectedbody.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1008,6 +1008,8 @@ void RobotBase::_ComputeConnectedBodiesInformation()
RecursivePrefixMatchingField(connectedBody._nameprefix, boost::bind(MatchFieldsCaseInsensitive, _1, std::string("toolnames")), newGripperInfoDoc, newGripperInfoDoc.GetAllocator(), false);
RecursivePrefixMatchingField(connectedBody._nameprefix, boost::bind(MatchFieldsCaseInsensitive, _1, std::string("jointname")), newGripperInfoDoc, newGripperInfoDoc.GetAllocator(), false);
RecursivePrefixMatchingField(connectedBody._nameprefix, boost::bind(MatchFieldsCaseInsensitive, _1, std::string("jointnames")), newGripperInfoDoc, newGripperInfoDoc.GetAllocator(), false);
RecursivePrefixMatchingField(connectedBody._nameprefix, boost::bind(MatchFieldsCaseInsensitive, _1, std::string("grippername")), newGripperInfoDoc, newGripperInfoDoc.GetAllocator(), false);
RecursivePrefixMatchingField(connectedBody._nameprefix, boost::bind(MatchFieldsCaseInsensitive, _1, std::string("grippernames")), newGripperInfoDoc, newGripperInfoDoc.GetAllocator(), false);
pnewgripperInfo->_docGripperInfo.Swap(newGripperInfoDoc);
}
else {
Expand Down

0 comments on commit 60c9232

Please sign in to comment.