FancySafeBot 0.0.1
A safe robotics library
Loading...
Searching...
No Matches
fsb_urdf_origin.h
1
2#pragma once
3
4#include "fsb_urdf_error.h"
5#include "fsb_motion.h"
6#include <string>
7#include <tinyxml2.h>
8
9namespace fsb::urdf
10{
11
34Transform urdf_parse_origin(
35 const std::string& fname, const std::string& el_name, const tinyxml2::XMLElement* el_xml,
36 UrdfError& err);
37
57MotionVector urdf_parse_origin_offset(
58 const std::string& fname, const std::string& body_name, const tinyxml2::XMLElement* body_xml,
59 UrdfError& err);
60
65} // namespace fsb::urdf
MotionVector urdf_parse_origin_offset(const std::string &fname, const std::string &body_name, const tinyxml2::XMLElement *body_xml, UrdfError &err)
Parse first child origin offset element.
Definition fsb_urdf_origin.cpp:83
Transform urdf_parse_origin(const std::string &fname, const std::string &el_name, const tinyxml2::XMLElement *el_xml, UrdfError &err)
Parse first child origin element to get coordinate transform.
Definition fsb_urdf_origin.cpp:14