3 unstable releases

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

#1486 in Algorithms

Download history 96/week @ 2024-11-13 85/week @ 2024-11-20 144/week @ 2024-11-27 313/week @ 2024-12-04 177/week @ 2024-12-11 93/week @ 2024-12-18 24/week @ 2024-12-25 53/week @ 2025-01-01 153/week @ 2025-01-08 72/week @ 2025-01-15 57/week @ 2025-01-22 86/week @ 2025-01-29 42/week @ 2025-02-05 97/week @ 2025-02-12 44/week @ 2025-02-19 49/week @ 2025-02-26

249 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