Revision: 20758
          http://sourceforge.net/p/jmol/code/20758
Author:   hansonr
Date:     2015-09-06 04:11:42 +0000 (Sun, 06 Sep 2015)
Log Message:
-----------
Jmol.___JmolVersion="14.3.16_2015.09.05"

new feature: POLYHEDRA
  -- same as POLYHEDRA BONDS {selected}
new feature: POLYHEDRA 4
  -- same as POLYHEDRA 4 BONDS {selected}  
new feature: POLYHEDRA OFFSET 1.4
  -- same as POLYHEDRA COLLAPSED faceCenterOffset 1.4
new feature: POLYHEDRA COLLAPSED 1.4
  -- same as POLYHEDRA COLLAPSED faceCenterOffset 1.4

code: Polyhedra work, including more efficient algorithms for completing set of 
faces

bug fix: tracking down thread-safe issue in application console
bug fix: in Java, mouse should not lose control if moved out of application

undocumented POLYHEDRA FLAT removed

Modified Paths:
--------------
    trunk/Jmol/src/org/jmol/scriptext/CmdExt.java

Modified: trunk/Jmol/src/org/jmol/scriptext/CmdExt.java
===================================================================
--- trunk/Jmol/src/org/jmol/scriptext/CmdExt.java       2015-09-06 04:09:52 UTC 
(rev 20757)
+++ trunk/Jmol/src/org/jmol/scriptext/CmdExt.java       2015-09-06 04:11:42 UTC 
(rev 20758)
@@ -3217,13 +3217,8 @@
         propertyName = "nVertices";
         propertyValue = Integer.valueOf(intParameter(i));
         needsGenerating = true;
-        switch (tokAt(i + 1)) {
-        // wish I had not done this. Inconsistent with general syntax; only 
used here
-        case T.opEQ:
-        case T.comma:
+        if (tokAt(i + 1) == T.comma) 
           i++;
-          break;
-        }
         break;
       case T.bonds:
         if (nAtomSets > 0)

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


------------------------------------------------------------------------------
_______________________________________________
Jmol-commits mailing list
Jmol-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jmol-commits

Reply via email to