We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 551c0aa commit 3c223cbCopy full SHA for 3c223cb
1 file changed
examples/ioai_examples/ioai_nav_env.py
@@ -30,7 +30,7 @@
30
def interpolate_joint_positions(start_positions, end_positions, steps):
31
return np.linspace(start_positions, end_positions, steps).tolist()
32
33
-class OlympicNavEnv:
+class IoaiNavEnv:
34
def __init__(self, headless=False):
35
self.simulator = None
36
self.robot = None
@@ -203,7 +203,7 @@ def follow_path_callback(self):
203
f"Waypoint: {self.current_target_index}/{len(self.path)}")
204
205
if __name__ == "__main__":
206
- env = OlympicNavEnv(headless=False)
+ env = IoaiNavEnv(headless=False)
207
env.simulator.play()
208
env.simulator.add_physics_callback("follow_path_callback", env.follow_path_callback)
209
env.simulator.loop()
0 commit comments