Struct openrr_client::IkSolverWithChain[][src]

pub struct IkSolverWithChain { /* fields omitted */ }

Implementations

impl IkSolverWithChain[src]

pub fn end_transform(&self) -> Isometry3<f64>[src]

pub fn joint_positions(&self) -> Vec<f64>[src]

pub fn solve_with_constraints(
    &self,
    target_pose: &Isometry3<f64>,
    constraints: &Constraints
) -> Result<(), Error>
[src]

pub fn solve(&self, target_pose: &Isometry3<f64>) -> Result<(), Error>[src]

pub fn set_joint_positions_clamped(&self, positions: &[f64])[src]

pub fn new(
    arm: SerialChain<f64>,
    ik_solver: Arc<dyn InverseKinematicsSolver<f64> + Send + Sync>,
    constraints: Constraints
) -> Self
[src]

pub fn constraints(&self) -> &Constraints[src]

pub fn generate_trajectory_with_interpolation(
    &self,
    current_pose: &Isometry3<f64>,
    target_pose: &Isometry3<f64>,
    duration_sec: f64,
    max_resolution: f64,
    min_number_of_points: i32
) -> Result<Vec<TrajectoryPoint>, Error>
[src]

pub fn generate_trajectory_with_interpolation_and_constraints(
    &self,
    current_pose: &Isometry3<f64>,
    target_pose: &Isometry3<f64>,
    constraints: &Constraints,
    duration_sec: f64,
    max_resolution: f64,
    min_number_of_points: i32
) -> Result<Vec<TrajectoryPoint>, Error>
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,