found it. Thanks again, Rolf. These are all upper/lower-case problems. I
didn't do a thorough job checking for this.

see http://chemapps.stolaf.edu/jmol/zip/jmol-14.3.13_2015.04.01.zip

​Jmol.___JmolVersion="14.3.13_2015.04.01"

bug fix: local var xxx with same name of foo..xxx forces lower case xxx

new feature: draw polygon [@1 @2 @3...]
  -- fills polygon with triangles
  -- order is important -- must be cw or ccw
  -- does not have to be convex
  -- indeterminate result if atoms are not coplanar
  -- example:

        load $caffeine
        draw polygon [@5 @7 @12 @13 @1 @3]

new feature: ".[a]" notation extended to x.. and allows mixing with .a.
    function a(){return 1}
    x = [A:[1,2,3], a:[4,5,6]]
    $ print x.a.[a()]
     4
    $ print x..a..[a()]
     4
    $ print x.a..[a()]
     4
    $ print x..a..[a()]
     4
    $ print x..a.[a()]
     4
    $ y = x.a[1][2]; show y
     y = [ 4,5 ]
------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
Jmol-users mailing list
Jmol-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jmol-users

Reply via email to