Skip to content

Commit

Permalink
increase forbidden zone range
Browse files Browse the repository at this point in the history
  • Loading branch information
Ducanor committed Apr 23, 2022
1 parent 77d76cb commit 054a7e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions task_generator/task_generator/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
Path(__file__).parent / ".." / ".." / ".." / "forks" / "arena-tools"
)
sys.path.append(str(arena_tools_path))
from ArenaScenario import *
# from ArenaScenario import *


class StopReset(Exception):
Expand Down Expand Up @@ -92,12 +92,12 @@ def reset(self):
(
start_pos.x,
start_pos.y,
self.robot_manager.ROBOT_RADIUS,
self.robot_manager.ROBOT_RADIUS*4,
),
(
goal_pos.x,
goal_pos.y,
self.robot_manager.ROBOT_RADIUS,
self.robot_manager.ROBOT_RADIUS*4,
),
]
)
Expand Down

0 comments on commit 054a7e3

Please sign in to comment.