Struct k::LinkStar [] [src]

pub struct LinkStar<T: Real> {
    pub name: String,
    pub frames: Vec<VecKinematicChain<T>>,
    // some fields omitted
}

Robot representation with set of VecKinematicChains

This contains multiple VecKinematicChain. The frames must be serial without branch. root is the only link which has branch.

Fields

Methods

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

[src]

[src]

[src]

Trait Implementations

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

[src]

Formats the value using the given formatter.

impl<T: Clone + Real> Clone for LinkStar<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 LinkStar<T> where
    T: Real, 
[src]