@@ -3,10 +3,15 @@ Plotting tools for RRT_2D
@author: huiming zhou
"""
-
import matplotlib.pyplot as plt
import matplotlib.patches as patches
+import os
+import sys
+
+sys.path.append(os.path.dirname(os.path.abspath(__file__)) +
+ "/../../Sampling-based Planning/")
from rrt_2D import env
@@ -3,13 +3,17 @@ RRT_2D
+import math
+import numpy as np
from rrt_2D import plotting
-import numpy as np
-import math
class Node:
def __init__(self, n):
@@ -3,13 +3,17 @@ RRT_star 2D