Given we already have rotation from_fixed_xyz which is a form of euler
angles, this function should probably have a more descriptive name
describing which Euler angles it uses.
On Feb 2, 2009, at 10:10 PM, Notification of IMP commits wrote:
+{
+ Float a,b,c,d;
+ Float c1,c2,c3,s1,s2,s3;
+ c2=cos(theta/2);c1=cos(phi/2);c3=cos(psi/2);
+ s2=sin(theta/2);s1=sin(phi/2);s3=sin(psi/2);
+ a = c1*c2*c3+s1*s2*s3;
+ b = s1*c2*c3-c1*s2*s3;
+ c = c1*s2*c3+s1*c2*s3;
+ d = c1*c2*s3-s1*s2*c3;
+ return Rotation3D(a,b,c,d);
+}
//! Generate a Rotation3D object from a rotation matrix
/**
\throw ValueException if the rotation is not a rotation matrix.
_______________________________________________
IMP-commits mailing list
IMP-commits@salilab.orghttps://salilab.org/mailman/listinfo/imp-commits