[][src]Trait motion_planning::Trajectory

pub trait Trajectory<V> {
    fn get_segment(&self, t: f64) -> Option<Segment<V>>;
fn position_at(&self, t: f64) -> Option<V>;
fn velocity_at(&self, t: f64) -> Option<V>;
fn acceleration_at(&self, t: f64) -> Option<V>; }

Required methods

fn get_segment(&self, t: f64) -> Option<Segment<V>>

fn position_at(&self, t: f64) -> Option<V>

fn velocity_at(&self, t: f64) -> Option<V>

fn acceleration_at(&self, t: f64) -> Option<V>

Loading content...

Implementations on Foreign Types

impl<V> Trajectory<V> for Vec<Pose<V>> where
    V: Add<V, Output = V> + Copy + Mul<f64, Output = V>, 
[src]

Loading content...

Implementors

Loading content...