Ignore:
Timestamp:
Nov 23, 2014, 3:29:00 AM (10 years ago)
Author:
ldelgass
Message:

merge r4767 from trunk

Location:
branches/1.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/1.3

    • Property svn:mergeinfo changed
      /trunkmerged: 4767
  • branches/1.3/gui/scripts/vtkisosurfaceviewer.tcl

    r4766 r4768  
    77# ======================================================================
    88#  AUTHOR:  Michael McLennan, Purdue University
    9 #  Copyright (c) 2004-2005  Purdue Research Foundation
     9#  Copyright (c) 2004-2014  HUBzero Foundation, LLC
    1010#
    1111#  See the file "license.terms" for information on usage and
     
    6363
    6464    # The following methods are only used by this class.
    65 
    6665    private method AdjustSetting {what {value ""}}
    6766    private method BuildAxisTab {}
     
    229228        -xpan            0
    230229        -ypan            0
    231         -zoom            1.0 
     230        -zoom            1.0
    232231    }
    233232    set _arcball [blt::arcball create 100 100]
     
    241240    }
    242241    array set _settings {
    243         -axesvisible                    1
    244         -axislabels                     1
    245         -axisminorticks                 1
    246         -axismode                       "static"
    247         -background                     black
    248         -colormap                       BCGYR
    249         -colormapvisible                1
    250         -cutplaneedges                  0
    251         -cutplanelighting               1
    252         -cutplaneopacity                1.0
    253         -cutplanepreinterp              1
    254         -cutplanesvisible               0
    255         -cutplanewireframe              0
    256         -field                          "Default"
    257         -isolinecolor                   white
    258         -isosurfaceedges                0
    259         -isosurfacelighting             1
    260         -isosurfaceopacity              0.6
    261         -isosurfacevisible              1
    262         -isosurfacewireframe            0
    263         -legendvisible                  1
    264         -numcontours                    10
    265         -outline                        0
    266         -xcutplaneposition              50
    267         -xcutplanevisible               1
    268         -xgrid                          0
    269         -ycutplaneposition              50
    270         -ycutplanevisible               1
    271         -ygrid                          0
    272         -zcutplaneposition              50
    273         -zcutplanevisible               1
    274         -zgrid                          0
     242        -axesvisible                1
     243        -axislabels                 1
     244        -axisminorticks             1
     245        -axismode                   "static"
     246        -background                 black
     247        -colormap                   BCGYR
     248        -colormapvisible            1
     249        -cutplaneedges              0
     250        -cutplanelighting           1
     251        -cutplaneopacity            1.0
     252        -cutplanepreinterp          1
     253        -cutplanesvisible           0
     254        -cutplanewireframe          0
     255        -field                      "Default"
     256        -isolinecolor               white
     257        -isosurfaceedges            0
     258        -isosurfacelighting         1
     259        -isosurfaceopacity          0.6
     260        -isosurfacevisible          1
     261        -isosurfacewireframe        0
     262        -legendvisible              1
     263        -numcontours                10
     264        -outline                    0
     265        -xcutplaneposition          50
     266        -xcutplanevisible           1
     267        -xgrid                      0
     268        -ycutplaneposition          50
     269        -ycutplanevisible           1
     270        -ygrid                      0
     271        -zcutplaneposition          50
     272        -zcutplanevisible           1
     273        -zgrid                      0
    275274    }
    276275    array set _changed {
     
    390389        puts stderr errs=$errs
    391390    }
     391
    392392    # Legend
    393 
    394393    set _image(legend) [image create photo]
    395394    itk_component add legend {
     
    596595}
    597596
    598 
    599597# ----------------------------------------------------------------------
    600598# USAGE: delete ?<dataobj1> <dataobj2> ...?
     
    908906    if { $info(-type) == "image" } {
    909907        if 0 {
    910             set f [open "last.ppm" "w"]
    911             puts $f $bytes
     908            set f [open "last.ppm" "w"]
     909            fconfigure $f -encoding binary
     910            puts -nonewline $f $bytes
    912911            close $f
    913912        }
     
    990989    # generates a new call to Rebuild).   
    991990    StartBufferingCommands
     991
    992992    if { $_reset } {
    993993        set _width $w
     
    10231023            if { ![info exists _datasets($tag)] } {
    10241024                set bytes [$dataobj vtkdata $comp]
    1025                 if 0 {
    1026                     set f [open "/tmp/isosurface.vtk" "w"]
    1027                     puts $f $bytes
    1028                     close $f
     1025                if 0 {
     1026                    set f [open "/tmp/isosurface.vtk" "w"]
     1027                    fconfigure $f -translation binary -encoding binary
     1028                    puts -nonewline $f $bytes
     1029                    close $f
    10291030                }
    10301031                set length [string length $bytes]
     
    10761077                set label [string toupper $axis]
    10771078            }
     1079            # May be a space in the axis label
    10781080            SendCmd [list axis name $axis $label]
    10791081        }
     
    11851187    SendCmd "camera pan $x $y"
    11861188}
    1187 
    11881189
    11891190# ----------------------------------------------------------------------
     
    15361537    }
    15371538}
    1538 
    15391539
    15401540#
     
    23222322}
    23232323
    2324 
    23252324# ----------------------------------------------------------------------
    23262325# USAGE: Slice move x|y|z <newval>
     
    23902389    set font "Arial 8"
    23912390    set lineht [font metrics $font -linespace]
    2392    
     2391
    23932392    if { [string match "component*" $fname] } {
    23942393        set title ""
Note: See TracChangeset for help on using the changeset viewer.