Changeset 4925 for branches/1.3


Ignore:
Timestamp:
Jan 14, 2015 2:01:59 PM (9 years ago)
Author:
ldelgass
Message:

merge r4924 from trunk

Location:
branches/1.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/1.3

    • Property svn:mergeinfo changed
      /trunkmerged: 4924
  • branches/1.3/gui/scripts/cloud.tcl

    r4504 r4925  
    148148        # Extract each point and add it to the points list
    149149        foreach {x y z} $line break
    150         foreach axis {x y z} units $_units {
    151             if { $units == "" } {
    152                 set value [set $axis]
    153             } else {
    154                 set value [Rappture::Units::convert [set $axis] \
    155                         -context $units -to $units -units off]
    156             }
    157             set $axis $value;           # Set the (x/y/z) coordinate to
    158                                         # converted value.
     150        foreach axis {x y z} {
     151            # Units on point coordinates are NOT supported
     152            set value [set $axis]
     153            # Update limits
    159154            if { ![info exists _limits($axis)] } {
    160155                set _limits($axis) [list $value $value]
Note: See TracChangeset for help on using the changeset viewer.