pub struct TrajectoryTreeIk<T> {
pub times: Vec<T>,
pub q_start: Array1<T>,
pub q_end: Array1<T>,
pub base_link: String,
pub ee_link: String,
}Expand description
Tree-model trajectory IK over a time grid (full-model q in actuated order).
Fields§
§times: Vec<T>§q_start: Array1<T>§q_end: Array1<T>§base_link: String§ee_link: StringImplementations§
Source§impl<T: NabledReal + LuProviderScalar> TrajectoryTreeIk<T>
impl<T: NabledReal + LuProviderScalar> TrajectoryTreeIk<T>
Sourcepub fn solve<M: KinematicTreeModel<T>>(
&self,
model: &M,
config: &TrajectoryIkConfig<T>,
) -> Result<TrajectoryIkResult<T>, SimError>
pub fn solve<M: KinematicTreeModel<T>>( &self, model: &M, config: &TrajectoryIkConfig<T>, ) -> Result<TrajectoryIkResult<T>, SimError>
Solve tree DLS IK at each time sample by blending joint targets then FK-ing to SE(3).
Trait Implementations§
Source§impl<T: Clone> Clone for TrajectoryTreeIk<T>
impl<T: Clone> Clone for TrajectoryTreeIk<T>
Source§fn clone(&self) -> TrajectoryTreeIk<T>
fn clone(&self) -> TrajectoryTreeIk<T>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<T: Debug> Debug for TrajectoryTreeIk<T>
impl<T: Debug> Debug for TrajectoryTreeIk<T>
Source§impl<T: PartialEq> PartialEq for TrajectoryTreeIk<T>
impl<T: PartialEq> PartialEq for TrajectoryTreeIk<T>
Source§fn eq(&self, other: &TrajectoryTreeIk<T>) -> bool
fn eq(&self, other: &TrajectoryTreeIk<T>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<T> StructuralPartialEq for TrajectoryTreeIk<T>
Auto Trait Implementations§
impl<T> Freeze for TrajectoryTreeIk<T>
impl<T> RefUnwindSafe for TrajectoryTreeIk<T>where
T: RefUnwindSafe,
impl<T> Send for TrajectoryTreeIk<T>where
T: Send,
impl<T> Sync for TrajectoryTreeIk<T>where
T: Sync,
impl<T> Unpin for TrajectoryTreeIk<T>where
T: Unpin,
impl<T> UnsafeUnpin for TrajectoryTreeIk<T>
impl<T> UnwindSafe for TrajectoryTreeIk<T>where
T: UnwindSafe + RefUnwindSafe,
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