Beispiel #1
0
 def __init__(self, owner_uid, bearing, detects) :
     SensorEvent.__init__(self, owner_uid)
     self._bearing = bearing
     self._detects = detects
Beispiel #2
0
 def __init__(self, owner_uid, bearing, distance, target_location) :
     SensorEvent.__init__(self, owner_uid)
     self._bearing = bearing
     self._distance = distance
     self._target_location = target_location
Beispiel #3
0
 def __init__(self, owner_uid, sensor_id, visible, field) :
     SensorEvent.__init__(self, owner_uid)
     self._visible = visible
     self._field = field
     self._owner_uid = owner_uid
     self._sensor_uid = sensor_id
Beispiel #4
0
 def __init__(self, owner_uid, location) :
     SensorEvent.__init__(self, owner_uid)
     self._location = location