Skip to content

Commit

Permalink
Fix offset vals
Browse files Browse the repository at this point in the history
  • Loading branch information
MadsSR committed May 13, 2024
1 parent c090934 commit 8962294
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fastfiz_env/wrappers/action.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ class FastFizActionWrapper(ActionWrapper):
MAX_PHI = 360 - 0.001
MIN_VELOCITY = 0
MAX_VELOCITY = 10 - 0.001
MIN_OFFSET = -28 + 0.001
MAX_OFFSET = 28 - 0.001
MIN_OFFSET = -28 + 1
MAX_OFFSET = 28 - 1
SPACES = {
"VECTOR_2D": spaces.Box(
low=np.array([-1, -1]),
Expand Down

0 comments on commit 8962294

Please sign in to comment.