[][src]Struct gear::JointPathPlannerBuilder

pub struct JointPathPlannerBuilder<N> where
    N: RealField, 
{ /* fields omitted */ }

Builder pattern to create JointPathPlanner

Implementations

impl<N> JointPathPlannerBuilder<N> where
    N: RealField + Float + SubsetOf<f64>, 
[src]

pub fn new(urdf_robot: Robot, collision_checker: CollisionChecker<N>) -> Self[src]

Create from components

There are also some utility functions to create from urdf

pub fn collision_check_margin(self, length: N) -> Self[src]

pub fn step_length(self, step_length: N) -> Self[src]

pub fn max_try(self, max_try: usize) -> Self[src]

pub fn num_smoothing(self, num_smoothing: usize) -> Self[src]

pub fn self_collision_pairs(
    self,
    self_collision_pairs: Vec<(String, String)>
) -> Self
[src]

pub fn finalize(self) -> JointPathPlanner<N>[src]

impl<N> JointPathPlannerBuilder<N> where
    N: RealField + SubsetOf<f64> + Float
[src]

pub fn from_urdf_file<P>(file: P) -> Result<JointPathPlannerBuilder<N>, Error> where
    P: AsRef<Path>, 
[src]

Try to create JointPathPlannerBuilder instance from URDF file and end link name

pub fn from_urdf_robot<P>(
    robot: Robot
) -> Result<JointPathPlannerBuilder<N>, Error>
[src]

Try to create JointPathPlannerBuilder instance from urdf_rs::Robot instance

Auto Trait Implementations

impl<N> !RefUnwindSafe for JointPathPlannerBuilder<N>[src]

impl<N> Send for JointPathPlannerBuilder<N> where
    N: Scalar
[src]

impl<N> Sync for JointPathPlannerBuilder<N> where
    N: Scalar
[src]

impl<N> Unpin for JointPathPlannerBuilder<N> where
    N: Scalar + Unpin
[src]

impl<N> !UnwindSafe for JointPathPlannerBuilder<N>[src]

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>,