mirror of
https://github.com/zhm-real/PathPlanning.git
synced 2026-08-30 00:50:46 +08:00
15 lines
260 B
Python
15 lines
260 B
Python
import math
|
|
import numpy as np
|
|
import os
|
|
import sys
|
|
|
|
sys.path.append(os.path.dirname(os.path.abspath(__file__)) +
|
|
"/../../Sampling-based Planning/")
|
|
|
|
from rrt_2D import env
|
|
from rrt_2D import plotting
|
|
from rrt_2D import utils
|
|
|
|
a = [0, 0]
|
|
r = 1
|