|
| DartLoader () |
| Constructor with the default ResourceRetriever. More...
|
|
void | addPackageDirectory (const std::string &_packageName, const std::string &_packageDirectory) |
| Specify the directory of a ROS package. More...
|
|
dynamics::SkeletonPtr | parseSkeleton (const common::Uri &_uri, const common::ResourceRetrieverPtr &_resourceRetriever=nullptr, unsigned int flags=DEFAULT) |
| Parse a file to produce a Skeleton. More...
|
|
dynamics::SkeletonPtr | parseSkeletonString (const std::string &_urdfString, const common::Uri &_baseUri, const common::ResourceRetrieverPtr &_resourceRetriever=nullptr, unsigned int flags=DEFAULT) |
| Parse a text string to produce a Skeleton. More...
|
|
dart::simulation::WorldPtr | parseWorld (const common::Uri &_uri, const common::ResourceRetrieverPtr &_resourceRetriever=nullptr, unsigned int flags=DEFAULT) |
| Parse a file to produce a World. More...
|
|
dart::simulation::WorldPtr | parseWorldString (const std::string &_urdfString, const common::Uri &_baseUri, const common::ResourceRetrieverPtr &_resourceRetriever=nullptr, unsigned int flags=DEFAULT) |
| Parse a text string to produce a World. More...
|
|
|
static dart::dynamics::SkeletonPtr | modelInterfaceToSkeleton (const urdf::ModelInterface *model, const common::Uri &baseUri, const common::ResourceRetrieverPtr &resourceRetriever, unsigned int flags) |
| Parses the ModelInterface and spits out a Skeleton object. More...
|
|
static bool | createSkeletonRecursive (const urdf::ModelInterface *model, dynamics::SkeletonPtr skel, const urdf::Link *lk, dynamics::BodyNode *parent, const common::Uri &baseUri, const common::ResourceRetrieverPtr &_resourceRetriever, unsigned int flags) |
|
static bool | addMimicJointsRecursive (const urdf::ModelInterface *model, dynamics::SkeletonPtr _skel, const urdf::Link *_lk) |
|
template<class VisualOrCollision > |
static dynamics::ShapePtr | createShape (const VisualOrCollision *_vizOrCol, const common::Uri &_baseUri, const common::ResourceRetrieverPtr &_resourceRetriever) |
| @function createShape More...
|
|
static dynamics::BodyNode * | createDartJointAndNode (const urdf::Joint *_jt, const dynamics::BodyNode::Properties &_body, dynamics::BodyNode *_parent, dynamics::SkeletonPtr _skeleton, unsigned int flgas) |
| @function createDartJoint More...
|
|
static bool | createDartNodeProperties (const urdf::Link *_lk, dynamics::BodyNode::Properties &properties, const common::Uri &_baseUri, const common::ResourceRetrieverPtr &_resourceRetriever) |
| @function createDartNode More...
|
|
static bool | createShapeNodes (const urdf::ModelInterface *model, const urdf::Link *lk, dynamics::BodyNode *bodyNode, const common::Uri &baseUri, const common::ResourceRetrieverPtr &resourceRetriever) |
|
static Eigen::Isometry3d | toEigen (const urdf::Pose &_pose) |
| @function pose2Affine3d More...
|
|
static Eigen::Vector3d | toEigen (const urdf::Vector3 &_vector) |
|
static bool | readFileToString (const common::ResourceRetrieverPtr &_resourceRetriever, const common::Uri &_uri, std::string &_output) |
| @function readXml More...
|
|
void dart::utils::DartLoader::addPackageDirectory |
( |
const std::string & |
_packageName, |
|
|
const std::string & |
_packageDirectory |
|
) |
| |
Specify the directory of a ROS package.
In your URDF files, you may see strings with a package URI pattern such as:
"package://my_robot/meshes/mesh_for_my_robot.stl"
\______/ \______/\___________________________/
| | |
package package file path with respect to
keyword name the package directory
For us to successfully parse a URDF, we need to be told what the path to the package directory is, using addPackageDirectory(). In this case, suppose the path to the my_robot package is /path/to/my_robot. Then you should use addPackageDirectory("my_robot", "/path/to/my_robot"). Altogether, this implies that a file named "/path/to/my_robot/meshes/mesh_for_my_robot.stl" exists. Whatever you specify as the package directory will end up replacing the 'package keyword' and 'package name' components of the URI string.