mirror of
https://github.com/zhm-real/PathPlanning.git
synced 2026-08-29 16:40:46 +08:00
8 lines
157 B
Python
8 lines
157 B
Python
class Node:
|
|
def __init__(self, x, y):
|
|
self.x = x
|
|
self.y = y
|
|
self.path_x = []
|
|
self.path_y = []
|
|
self.parent = None
|