Changeset 4475 for branches


Ignore:
Timestamp:
Jul 9, 2014, 9:10:33 PM (10 years ago)
Author:
ldelgass
Message:

merge from trunk

Location:
branches/1.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/1.3

  • branches/1.3/gui/scripts/vtkisosurfaceviewer.tcl

    r4470 r4475  
    236236        -axesvisible                    1
    237237        -axislabelsvisible              1
    238         -background                     black
    239         -colormap                       BCGYR
    240         -colormapvisible                1
     238        -axismode                       "static"
     239        -background                     black
     240        -colormap                       BCGYR
     241        -colormapvisible                1
    241242        -cutplaneedges                  0
    242243        -cutplanelighting               1
     
    245246        -cutplanesvisible               0
    246247        -cutplanewireframe              0
    247         -field                          "Default"
    248         -isolinecolor                   white
     248        -field                          "Default"
     249        -isolinecolor                   white
    249250        -isosurfaceedges                0
    250251        -isosurfacelighting             1
     
    266267    }
    267268    array set _changed {
     269        -colormap                0
    268270        -isosurfaceopacity       0
    269         -colormap                0
    270271        -numcontours             0
    271272    }
     
    14391440        }
    14401441        "-colormap" {
    1441             set _changed(-colormap) 1
     1442            set _changed($what) 1
    14421443            StartBufferingCommands
    14431444            set color [$itk_component(colormap) value]
     
    18191820        "furthest_triad"  "farthest" \
    18201821        "outer_edges"     "outer"         
    1821     $itk_component(axisMode) value "static"
     1822    $itk_component(axisMode) value $_settings(-axismode)
    18221823    bind $inner.mode <<Value>> [itcl::code $this AdjustSetting -axismode]
    18231824
     
    21712172        set style(-opacity) 1
    21722173    }
    2173     SendCmd "cutplane add $tag"
    2174     SendCmd "cutplane visible 0 $tag"
    21752174
    21762175    # This is too complicated.  We want to set the colormap, number of
     
    22112210    set _settings(-zcutplaneposition) $style(-zcutplaneposition)
    22122211 
    2213     GenerateContourList
    2214     SendCmd [list contour3d add contourlist $_contourList(values) $tag]
    2215 
    2216     SendCmd "contour3d edges $style(-edges) $tag"
     2212    SendCmd "cutplane add $tag"
     2213    SendCmd "cutplane visible $style(-cutplanesvisible) $tag"
     2214
    22172215    SendCmd "outline add $tag"
    22182216    SendCmd "outline color [Color2RGB $itk_option(-plotforeground)] $tag"
    22192217    SendCmd "outline visible $style(-outline) $tag"
    22202218    set _settings(-outline) $style(-outline)
     2219 
     2220    GenerateContourList
     2221    SendCmd [list contour3d add contourlist $_contourList(values) $tag]
     2222    SendCmd "contour3d visible $style(-isosurfacevisible) $tag"
     2223    SendCmd "contour3d edges $style(-edges) $tag"
    22212224    set _settings(-isosurfaceedges) $style(-edges)
    22222225    #SendCmd "contour3d color [Color2RGB $settings(-color)] $tag"
Note: See TracChangeset for help on using the changeset viewer.