31 releases

0.8.0 Nov 6, 2023
0.7.2 May 10, 2023
0.6.9 Feb 13, 2023
0.6.7 Oct 25, 2022
0.1.5 May 15, 2017

#348 in Parser implementations

Download history 222/week @ 2024-03-13 251/week @ 2024-03-20 224/week @ 2024-03-27 272/week @ 2024-04-03 207/week @ 2024-04-10 249/week @ 2024-04-17 227/week @ 2024-04-24 223/week @ 2024-05-01 236/week @ 2024-05-08 202/week @ 2024-05-15 224/week @ 2024-05-22 308/week @ 2024-05-29 188/week @ 2024-06-05 202/week @ 2024-06-12 298/week @ 2024-06-19 142/week @ 2024-06-26

857 downloads per month
Used in 26 crates (14 directly)

Apache-2.0

38KB
925 lines

urdf-rs

Build Status crates.io docs discord

URDF parser 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);

OpenRR Community

Here is a discord server for OpenRR users and developers.

Dependencies

~2.7–4.5MB
~78K SLoC