RRT

Rapidly-Exploring Random Tree

I have implemented a RRT algorithm in C++ for 2D path planning in a continuous state space. I have also created a visualization of the algorithm using the SFML library.  This allows for an interactive experience in which the user can add obstacles to the state space before starting the algorithm. The algorithm achieves 2D continuous path planning through the following procedure: 

Once a node is added to the tree that has a euclidean distance to the goal position that is less than the set goal tolerance, the algorithm has concluded.  At this point, the path from start to goal can be found by traversing from the final node to the start node as each node has a pointer to its parent.