Definition at line 772 of file general_optics.py. 00772 : 00773 if type(angle) is not types.TupleType: 00774 theta=angle 00775 eta=0.0 00776 else: 00777 theta=angle[0] 00778 eta=angle[1] 00779 self.rotate_in_local_frame(matrix_to_global=eulermat(theta, eta, 0.0)) 00780 return self 00781 def clone(self, newname=None):
|