Skip to content

Commit

Permalink
changed simulation time
Browse files Browse the repository at this point in the history
  • Loading branch information
ShisatoYano committed Dec 6, 2023
1 parent f2c8b74 commit e1ecdcd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ def main():
"""

# set simulation parameters
x_lim, y_lim = MinMax(-5, 195), MinMax(-50, 50)
vis = GlobalXYVisualizer(x_lim, y_lim, TimeParameters(span_sec=120))
x_lim, y_lim = MinMax(-5, 175), MinMax(-50, 50)
vis = GlobalXYVisualizer(x_lim, y_lim, TimeParameters(span_sec=100))

# create course data instance
course = SinCurveCourse(0, 190, 0.5, 10, color='k', width_ratio=0.1)
course = SinCurveCourse(0, 170, 0.5, 10, color='k', width_ratio=0.1)
vis.add_object(course)

# create vehicle's spec instance
Expand Down

0 comments on commit e1ecdcd

Please sign in to comment.