Definition at line 1332 of file general_optics.py. 01332 : 01333 "make the last optic of this look from the second-to-last optic to a final look_to point. Useful if the last optic is a mirror" 01334 l=self.optics_dict 01335 e1, e2 = self.exit_optics_tags() 01336 l[e2].set_direction(l[e1], look_to) 01337 def set_entrance_direction(self, look_from):
|