openrr / urdf-rs

URDF parser for Rust

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

URDF parser for Rust

License:Apache License 2.0


Languages

Language:Rust 89.4%Language:Shell 10.6%