Revision: 5179
Author:   hansonr
Date:     2006-05-25 20:42:19 -0700 (Thu, 25 May 2006)
ViewCVS:  http://svn.sourceforge.net/jmol/?rev=5179&view=rev

Log Message:
-----------
bob200603 10.x correction in this note only -- in 10.x moveTo command accepts a 
float
so at to allow for higher precision in applet synchronization (even though that 
was never
fully worked out) fix for "home" position moveto command 

moveTo 1.0 0 0 1 0

not

moveTo 1.0 0 0 0 100

Modified Paths:
--------------
    branches/bob200603/Jmol/src/org/jmol/viewer/TransformManager.java
Modified: branches/bob200603/Jmol/src/org/jmol/viewer/TransformManager.java
===================================================================
--- branches/bob200603/Jmol/src/org/jmol/viewer/TransformManager.java   
2006-05-26 03:40:35 UTC (rev 5178)
+++ branches/bob200603/Jmol/src/org/jmol/viewer/TransformManager.java   
2006-05-26 03:42:19 UTC (rev 5179)
@@ -1185,7 +1185,7 @@
     StringBuffer sb = new StringBuffer();
     sb.append("moveto " + timespan);
     if (degrees < 0.01f) {
-      sb.append(" 0 0 1 0");
+      sb.append(" 0 0 1 0"); 
     } else {
       vectorT.set(axisangleT.x, axisangleT.y, axisangleT.z);
       vectorT.normalize();


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



-------------------------------------------------------
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
_______________________________________________
Jmol-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jmol-commits

Reply via email to