8 releases (breaking)

0.7.0 Feb 3, 2023
0.6.0 Jan 19, 2022
0.5.0 Mar 3, 2021
0.4.0 May 23, 2018
0.1.1 Jul 25, 2017

#1154 in Algorithms

Download history 51/week @ 2024-01-01 173/week @ 2024-01-08 108/week @ 2024-01-15 196/week @ 2024-01-22 125/week @ 2024-01-29 164/week @ 2024-02-05 166/week @ 2024-02-12 132/week @ 2024-02-19 174/week @ 2024-02-26 231/week @ 2024-03-04 155/week @ 2024-03-11 143/week @ 2024-03-18 258/week @ 2024-03-25 348/week @ 2024-04-01 133/week @ 2024-04-08 135/week @ 2024-04-15

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

Apache-2.0

24KB
264 lines

rrt

Build Status crates.io docs

RRT (Rapidly-exploring Random Tree) library in Rust.

Only Dual RRT Connect is supported.

Examples

There is an example to solve collision avoid problem.

cargo run --release --example collision_avoid

Below is the simplest example. It search the path from [-1.2, 0.0] to [1.2, 0.0] avoiding [-1, -1] - [1, 1] region. There are only one function dual_rrt_connect, which takes start, goal, is free function, random generation function, unit length of extend, max repeat num.

use rand::distributions::{Distribution, Uniform};
let result = rrt::dual_rrt_connect(
    &[-1.2, 0.0],
    &[1.2, 0.0],
    |p: &[f64]| !(p[0].abs() < 1.0 && p[1].abs() < 1.0),
    || {
        let between = Uniform::new(-2.0, 2.0);
        let mut rng = rand::thread_rng();
        vec![between.sample(&mut rng), between.sample(&mut rng)]
    },
    0.2,
    1000,
)
.unwrap();
println!("{result:?}");
assert!(result.len() >= 4);

Dependencies

~1–1.7MB
~32K SLoC