Module KX_RadarSensor

Source Code for Module KX_RadarSensor

 1  # $Id: KX_RadarSensor.py 2607 2004-05-30 11:09:46Z kester $ 
 2  # Documentation for KX_RadarSensor 
 3  from KX_NearSensor import * 
 4   
5 -class KX_RadarSensor(KX_NearSensor):
6 """ 7 Radar sensor is a near sensor with a conical sensor object. 8 """ 9
10 - def getConeOrigin():
11 """ 12 Returns the origin of the cone with which to test. The origin 13 is in the middle of the cone. 14 15 @rtype: list [x, y, z] 16 """
17
18 - def getConeTarget():
19 """ 20 Returns the center of the bottom face of the cone with which to test. 21 22 @rtype: list [x, y, z] 23 """
24
25 - def getConeHeight():
26 """ 27 Returns the height of the cone with which to test. 28 29 @rtype: float 30 """
31