pub struct Segment { /* private fields */ }Expand description
Implementation of a kinematic chian segment. This is the joint together with the link.
It is represented by the joint, a frame that transforms from the joint to the end of the link, and an inertia parameter.
Implementations§
Source§impl Segment
impl Segment
Sourcepub fn new(joint: Joint, f_tip: Frame, inertia: RigidBodyInertia) -> Segment
pub fn new(joint: Joint, f_tip: Frame, inertia: RigidBodyInertia) -> Segment
Constructs a segment from the given Joint, link transformation
and inertia
Sourcepub fn set_joint(&self, new_joint: Joint) -> Segment
pub fn set_joint(&self, new_joint: Joint) -> Segment
Creates a new segment with the given joint
Sourcepub fn set_tip_frame(&self, new_f_tip: Frame) -> Segment
pub fn set_tip_frame(&self, new_f_tip: Frame) -> Segment
Creates a new segment with the given link transformation
Sourcepub fn set_inertia(&self, new_inertia: RigidBodyInertia) -> Segment
pub fn set_inertia(&self, new_inertia: RigidBodyInertia) -> Segment
Creates a new segment with the given inertia
Note that right now this method is useless because dynamics are not yet implemented
Sourcepub fn get_joint_type(&self) -> JointType
pub fn get_joint_type(&self) -> JointType
Returns the type of the internal joint
Sourcepub fn get_link_transform(&self) -> Frame
pub fn get_link_transform(&self) -> Frame
Returns the link transfrom
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Segment
impl<'de> Deserialize<'de> for Segment
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for Segment
Auto Trait Implementations§
impl Freeze for Segment
impl RefUnwindSafe for Segment
impl Send for Segment
impl Sync for Segment
impl Unpin for Segment
impl UnsafeUnpin for Segment
impl UnwindSafe for Segment
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.