path-planning 0.1.0

Path Planning Algorithms implemented in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Copyright (C) 2020 Dylan Staatz - All Rights Reserved. */

pub use crate::cspace::leader_follower::polar::{D, N};
pub use crate::obstacles::obstacles_2d_f64::*;

////////////////////////////////////////////////////////////////////////////////

use crate::cspace::leader_follower::polar::*;
use crate::path_planner::RunPathPlanner;
use crate::rrtx::{Rrtx, RrtxState};

pub type CS = LeaderFollowerPolarSpace<X>;
pub type PP = Rrtx<X, CS, OS, N>;
pub type State = RrtxState<X, CS, OS, N>;

pub type Rrtx2df64DualPolar = RunPathPlanner<X, CS, OS, PP, N>;