kdl_parser and kdl_parser_py provide tools to construct a KDL tree from an XML robot representation in URDF.
* kdl_parser: switch from TinyXML to TinyXML2 The library TinyXML is considered to be unmaintained and since all future development is focused on TinyXML2 this patch updates kdl_parser to use TinyXML2. Signed-off-by: Dmitry Rozhkov <dmitry.rozhkov@linux.intel.com> * Switch to using initString() for parsing in the TiXmlDocument API. This gets rid of a deprecation message when building against newer urdf. Signed-off-by: Chris Lalancette <clalancette@openrobotics.org> * Switch to const pointers for the tinyxml2 versions of the APIs. This matches what we are doing in URDF and what tinyxml2 itself does. Signed-off-by: Chris Lalancette <clalancette@openrobotics.org> |
||
---|---|---|
kdl_parser | ||
kdl_parser_py | ||
README.md |
README.md
KDL Parser
This contains packages for converting from URDF to a representation in KDL.
See the ROS wiki for API documentation and tutorials.
This was originally part of the ros/robot_model
repository.
It has been moved to this repo as described by ros/robot_model#195