pub struct PusherSliderMppiController { /* private fields */ }Expand description
Deterministic, seeded sampling controller for planar pushing.
The controller is face-aware: it keeps a warm-started nominal plan for each of the slider’s four faces, runs MPPI within each face, and executes the command from whichever face yields the lowest-cost rollout. Switching faces is what makes rotation-without-lateral-drift goals reachable (e.g. push the back face to spin one way, the front face to spin back and cancel the translation).
Implementations§
Source§impl PusherSliderMppiController
impl PusherSliderMppiController
pub fn new( config: PusherMppiConfig, params: PusherSliderParams, ) -> RoboticsResult<Self>
Sourcepub fn with_obstacles(self, obstacles: Vec<[f64; 2]>) -> Self
pub fn with_obstacles(self, obstacles: Vec<[f64; 2]>) -> Self
Attach obstacle centers (keep-out discs of config.obstacle_radius) that
the slider should avoid — used for multi-object pushing.
pub fn config(&self) -> &PusherMppiConfig
Sourcepub fn plan(
&mut self,
start: SliderState,
goal: SliderState,
) -> RoboticsResult<PusherMppiPlan>
pub fn plan( &mut self, start: SliderState, goal: SliderState, ) -> RoboticsResult<PusherMppiPlan>
Plan the next pusher command toward goal, choosing the best contact face.
Trait Implementations§
Source§impl Clone for PusherSliderMppiController
impl Clone for PusherSliderMppiController
Source§fn clone(&self) -> PusherSliderMppiController
fn clone(&self) -> PusherSliderMppiController
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 moreAuto Trait Implementations§
impl Freeze for PusherSliderMppiController
impl RefUnwindSafe for PusherSliderMppiController
impl Send for PusherSliderMppiController
impl Sync for PusherSliderMppiController
impl Unpin for PusherSliderMppiController
impl UnsafeUnpin for PusherSliderMppiController
impl UnwindSafe for PusherSliderMppiController
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§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 more§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).§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.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.