Skip to content

Commit

Permalink
setting import path
Browse files Browse the repository at this point in the history
  • Loading branch information
ShisatoYano committed Jan 14, 2025
1 parent fb39e3e commit 1ed362c
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
"""
rear_wheel_feedback_tracking.py
Author: Shisato Yano
"""

# import path setting
import sys
from pathlib import Path

abs_dir_path = str(Path(__file__).absolute().parent)
relative_path = "/../../../components/"

sys.path.append(abs_dir_path + relative_path + "visualization")
sys.path.append(abs_dir_path + relative_path + "state")
sys.path.append(abs_dir_path + relative_path + "vehicle")
sys.path.append(abs_dir_path + relative_path + "course/cubic_spline_course")
sys.path.append(abs_dir_path + relative_path + "control/lqr")

0 comments on commit 1ed362c

Please sign in to comment.