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

#294 in Parser implementations

Download history 170/week @ 2024-01-01 319/week @ 2024-01-08 226/week @ 2024-01-15 156/week @ 2024-01-22 238/week @ 2024-01-29 545/week @ 2024-02-05 264/week @ 2024-02-12 239/week @ 2024-02-19 314/week @ 2024-02-26 261/week @ 2024-03-04 249/week @ 2024-03-11 212/week @ 2024-03-18 219/week @ 2024-03-25 294/week @ 2024-04-01 205/week @ 2024-04-08 285/week @ 2024-04-15

1,038 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
~79K SLoC