Definition at line 903 of file general_optics.py. 00903 : 00904 "set_direction(from, to, set_info) points the mirror from object or coordinate 'from' to 'to' and updates the info string" 00905 general_optic.set_direction(self, from_obj, to_obj) 00906 00907 if set_info: 00908 self.reflector_info=("looking from %s to %s " % 00909 (self.looking_from_name, self.looking_to_name))+str(self.euler) 00910 return self #make daisy-chaining easy 00911 class null_optic(general_optic):
|