Files
PathPlanning/Sampling-based Planning/node.py
T

8 lines
157 B
Python
Raw Normal View History

2020-06-22 20:48:47 -07:00
class Node:
def __init__(self, x, y):
self.x = x
self.y = y
self.path_x = []
self.path_y = []
self.parent = None