Crate urdf_rs[][src]

Expand description

urdf-rs

Build Status crates.io docs

URDF parser using serde-xml-rs for rust.

Only link and joint are supported.

Example

You can access urdf elements like below example.

let urdf_robo = urdf_rs::read_file("sample.urdf").unwrap();
let links = urdf_robo.links;
println!("{:?}", links[0].visual[0].origin.xyz);
let joints = urdf_robo.joints;
println!("{:?}", joints[0].origin.xyz);

Contributors

Made with contrib.rocks.

Modules

Structs

Enums

Functions

Read urdf file and create Robot instance

Read from string instead of file.

Type Definitions

Alias for a Result with the error type UrdfError.