Ejemplo n.º 1
0
 def __init__(self, owner_uid, bearing, detects) :
     SensorEvent.__init__(self, owner_uid)
     self._bearing = bearing
     self._detects = detects
Ejemplo n.º 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
Ejemplo n.º 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
Ejemplo n.º 4
0
 def __init__(self, owner_uid, location) :
     SensorEvent.__init__(self, owner_uid)
     self._location = location