Files
Apollo3D_SE/world/commons/other_robot.py

7 lines
195 B
Python
Raw Permalink Normal View History

2026-03-10 09:35:27 -04:00
import numpy as np
class OtherRobot:
def __init__(self, is_teammate: bool=True):
self.is_teammate = is_teammate
self.position = np.zeros(3)
self.last_seen_time = None