Skip to content
forked from openrr/urdf-rs

URDF parser using serde-xml-rs for rust

License

Notifications You must be signed in to change notification settings

patrvanh/urdf-rs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

urdf-rs

Build Status crates.io docs discord

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_robot = urdf_rs::read_file("sample.urdf").unwrap();
let links = urdf_robot.links;
println!("{:?}", links[0].visual[0].origin.xyz);
let joints = urdf_robot.joints;
println!("{:?}", joints[0].origin.xyz);

Contributors

Made with contrib.rocks.

OpenRR Community

Here is a discord server for OpenRR users and developers.

About

URDF parser using serde-xml-rs for rust

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 92.6%
  • Shell 7.4%