[][src]Trait gear::collision::FromUrdf

pub trait FromUrdf {
    pub fn from_urdf_robot(robot: &Robot) -> Self;

    pub fn from_urdf_file<P>(path: P) -> Result<Self, UrdfError>
    where
        Self: Sized,
        P: AsRef<Path>
, { ... } }

Convert urdf object into gear/ncollide3d object

Required methods

pub fn from_urdf_robot(robot: &Robot) -> Self[src]

Loading content...

Provided methods

pub fn from_urdf_file<P>(path: P) -> Result<Self, UrdfError> where
    Self: Sized,
    P: AsRef<Path>, 
[src]

Loading content...

Implementations on Foreign Types

impl FromUrdf for Compound<f64>[src]

Create ncollide::shape::Compound from URDF file

The <link> elements are used as obstacles. set the origin/geometry of <visual> and <collision>. You can skip <inertia>.

Loading content...

Implementors

Loading content...