1 # Torch.py 2 3 -class Torch(): 4 ''' 5 Dummy class to make RaspiBrick source compatible with RaspiSim. All methods are empty. 6 ''' 7 8 - def __init__(self, *args): 9 pass 10 11 - def getIntensity(self, target): 12 return None 13 14 - def getLoc(self): 15 return None 16 17 - def setPixelLocation(self, x, y): 18 pass 19