mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-23 15:04:20 +00:00
adds example usage to spaces (#173)
This commit is contained in:
committed by
Greg Brockman
parent
a4c35f82c0
commit
f254dd197e
@@ -7,6 +7,9 @@ class Box(gym.Space):
|
||||
"""
|
||||
A box in R^n.
|
||||
I.e., each coordinate is bounded.
|
||||
|
||||
Example usage:
|
||||
self.action_space = spaces.Box(low=-10, high=10, shape=(1,))
|
||||
"""
|
||||
def __init__(self, low, high, shape=None):
|
||||
"""
|
||||
|
Reference in New Issue
Block a user