Changeset 3299 for branches


Ignore:
Timestamp:
Feb 14, 2013, 8:10:30 PM (12 years ago)
Author:
gah
Message:

change ?values to ?coords

Location:
branches/Rappture 1.2/gui/scripts
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/Rappture 1.2/gui/scripts/mesh.tcl

    r3289 r3299  
    686686        $xv seq $xMin $xMax $xNum
    687687    } else {
    688         $xv set [$xmlobj get $path.grid.xvalues]
     688        $xv set [$xmlobj get $path.grid.xcoords]
    689689        set xMin [$xv min]
    690690        set xMax [$xv max]
     
    695695        $yv seq $yMin $yMax $yNum
    696696    } else {
    697         $yv set [$xmlobj get $path.grid.yvalues]
     697        $yv set [$xmlobj get $path.grid.ycoords]
    698698        set yMin [$yv min]
    699699        set yMax [$yv max]
     
    705705            $zv seq $zMin $zMax $zNum
    706706        }  else {
    707             $zv set [$xmlobj get $path.grid.zvalues]
     707            $zv set [$xmlobj get $path.grid.zcoords]
    708708            set zMin [$zv min]
    709709            set zMax [$zv max]
     
    801801   
    802802    set points [$xmlobj get $path.cells.points]
    803     set xvalues [$xmlobj get $path.cells.xvalues]
    804     set yvalues [$xmlobj get $path.cells.yvalues]
     803    set xvalues [$xmlobj get $path.cells.xcoords]
     804    set yvalues [$xmlobj get $path.cells.ycoords]
    805805    if { $_dim == 2 } {
    806806        if { $xvalues != "" && $yvalues != "" } {
     
    816816            $all split $xv $yv
    817817        } else {
    818             puts stderr "missing either xvalues, yvalues, or points for $celltype cell mesh"
     818            puts stderr "missing either xcoords, ycoords, or points for $celltype cell mesh"
    819819            return 0
    820820        }
  • branches/Rappture 1.2/gui/scripts/visviewer.tcl

    r3259 r3299  
    159159
    160160    itk_component add main {
    161         Rappture::SidebarFrame $itk_interior.main -resizeframe 0
     161        Rappture::SidebarFrame $itk_interior.main -resizeframe 1
    162162    }
    163163    pack $itk_component(main) -expand yes -fill both
  • branches/Rappture 1.2/gui/scripts/vtkheightmapviewer.tcl

    r3297 r3299  
    984984            global env
    985985
     986puts stderr "sending clientinfo"
    986987            lappend data "hub" [exec hostname]
    987988            lappend data "viewer" "vtkheightmapviewer"
Note: See TracChangeset for help on using the changeset viewer.