| Crates.io | urdf-rs |
| lib.rs | urdf-rs |
| version | 0.9.0 |
| created_at | 2017-04-15 08:18:29.089446+00 |
| updated_at | 2024-09-06 07:18:39.976706+00 |
| description | URDF parser |
| homepage | |
| repository | https://github.com/openrr/urdf-rs |
| max_upload_size | |
| id | 10637 |
| size | 64,423 |
URDF parser for Rust.
Only link and joint are supported.
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 CommunityHere is a discord server for OpenRR users and developers.