32 releases

0.9.0 Sep 6, 2024
0.8.0 Nov 6, 2023
0.7.3 Aug 18, 2023
0.7.2 May 10, 2023
0.1.5 May 15, 2017

#192 in Parser implementations

Download history 1045/week @ 2024-09-15 756/week @ 2024-09-22 529/week @ 2024-09-29 233/week @ 2024-10-06 259/week @ 2024-10-13 317/week @ 2024-10-20 329/week @ 2024-10-27 585/week @ 2024-11-03 2162/week @ 2024-11-10 1483/week @ 2024-11-17 1159/week @ 2024-11-24 1883/week @ 2024-12-01 1701/week @ 2024-12-08 681/week @ 2024-12-15 438/week @ 2024-12-22 1262/week @ 2024-12-29

4,114 downloads per month
Used in 26 crates (15 directly)

Apache-2.0

47KB
1K SLoC

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

~4–6MB
~106K SLoC