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

#243 in Parser implementations

Download history 218/week @ 2023-12-09 311/week @ 2023-12-16 202/week @ 2023-12-23 162/week @ 2023-12-30 301/week @ 2024-01-06 252/week @ 2024-01-13 170/week @ 2024-01-20 237/week @ 2024-01-27 456/week @ 2024-02-03 335/week @ 2024-02-10 245/week @ 2024-02-17 295/week @ 2024-02-24 255/week @ 2024-03-02 263/week @ 2024-03-09 195/week @ 2024-03-16 249/week @ 2024-03-23

1,027 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.8–4.5MB
~80K SLoC