Struct k::VecKinematicChain [] [src]

pub struct VecKinematicChain<T: Real> {
    pub name: String,
    pub joint_with_links: Vec<Link<T>>,
    pub transform: Isometry3<T>,
}

Set of Joint and Link

imagine below structure

[transform] -> joint_with_links([[joint] -> [Link]] -> [[joint] -> [Link]] -> ...)

The order must be ordered.

  • start from root link
  • end with last link

Fields

Methods

impl<T> VecKinematicChain<T> where
    T: Real, 
[src]

[src]

[src]

[src]

Trait Implementations

impl<T: Debug + Real> Debug for VecKinematicChain<T>
[src]

[src]

Formats the value using the given formatter.

impl<T: Clone + Real> Clone for VecKinematicChain<T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T> LinkContainer<T> for VecKinematicChain<T> where
    T: Real, 
[src]

returns transforms of links

impl<T> KinematicChain<T> for VecKinematicChain<T> where
    T: Real, 
[src]

impl<T> JointContainer<T> for VecKinematicChain<T> where
    T: Real, 
[src]

[src]

if failed, joints angles are non determined,

[src]

[src]

[src]