Skip to content

Instantly share code, notes, and snippets.

View FPyC639's full-sized avatar

Jose M. Serra Jr. FPyC639

View GitHub Profile
@FPyC639
FPyC639 / rrt.py
Created April 25, 2022 20:19 — forked from fanjin-z/rrt.py
Python Implementation of Rapidly-exploring random tree (RRT) Path-planning Algorithm
'''
MIT License
Copyright (c) 2019 Fanjin Zeng
This work is licensed under the terms of the MIT license, see <https://opensource.org/licenses/MIT>.
'''
import numpy as np
from random import random
import matplotlib.pyplot as plt
from matplotlib import collections as mc