Ignore:
Timestamp:
Jan 13, 2015, 7:48:27 PM (10 years ago)
Author:
ldelgass
Message:

Remove support for units on cloud point coordinates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gui/scripts/cloud.tcl

    r4442 r4924  
    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             set value [Rappture::Units::convert [set $axis] \
    152                         -context $units -to $units -units off]
    153             set $axis $value;           # Set the (x/y/z) coordinate to
    154                                         # converted value.
     150        foreach axis {x y z} {
     151            # Units on point coordinates are NOT supported
     152            set value [set $axis]
     153            # Update limits
    155154            if { ![info exists _limits($axis)] } {
    156155                set _limits($axis) [list $value $value]
Note: See TracChangeset for help on using the changeset viewer.