trajectory

Trajectory interpolation

3 unstable releases

0.1.0 Oct 25, 2022
0.0.2 Mar 29, 2021
0.0.1 Dec 27, 2017

#1130 in Algorithms

Download history 52/week @ 2024-06-14 42/week @ 2024-06-21 37/week @ 2024-06-28 44/week @ 2024-07-05 41/week @ 2024-07-12 44/week @ 2024-07-19 102/week @ 2024-07-26 72/week @ 2024-08-02 43/week @ 2024-08-09 19/week @ 2024-08-16 49/week @ 2024-08-23 84/week @ 2024-08-30 83/week @ 2024-09-06 42/week @ 2024-09-13 46/week @ 2024-09-20 86/week @ 2024-09-27

263 downloads per month
Used in 9 crates (2 directly)

Apache-2.0

110KB
354 lines

trajectory

Build Status crates.io docs

Trajectory interpolator for Rust.

Code example

use trajectory::{CubicSpline, Trajectory};

let times = vec![0.0_f64, 1.0, 3.0, 4.0];
let points = vec![
    vec![0.0, -1.0],
    vec![2.0, -3.0],
    vec![3.0, 3.0],
    vec![1.0, 5.0],
];
let ip = CubicSpline::new(times, points).unwrap();
for i in 0..400 {
    let t = i as f64 * 0.01_f64;
    let p = ip.position(t).unwrap();
    let v = ip.velocity(t).unwrap();
    let a = ip.acceleration(t).unwrap();
}

Run example

It requires gnuplot.

cargo run --example plot

plot1 plot2

Dependencies