Changeset 6265 for branches/1.6
- Timestamp:
- Apr 13, 2016, 11:19:55 AM (9 years ago)
- Location:
- branches/1.6
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.6
-
branches/1.6/gui/scripts/flowvisviewer.tcl
r6242 r6265 127 127 128 128 private variable _arcball "" 129 private variable _dlist "" ;# list of data objects130 private variable _obj2ovride ;# maps dataobj => style override131 private variable _serverDatasets ;# contains all the dataobj-component132 ;# to volumes in the server133 private variable _recvdDatasets ;# list of data objs to send to server134 private variable _dataset2style ;# maps dataobj-component to transfunc135 private variable _style2datasets ;# maps tf back to list of129 private variable _dlist ""; # list of data objects 130 private variable _obj2ovride; # maps dataobj => style override 131 private variable _serverDatasets; # contains all the dataobj-component 132 # to volumes in the server 133 private variable _recvdDatasets; # list of data objs to send to server 134 private variable _dataset2style; # maps dataobj-component to transfunc 135 private variable _style2datasets; # maps tf back to list of 136 136 # dataobj-components using the tf. 137 private variable _dataset2flow ;# Maps dataobj-component to a flow.138 139 private variable _reset 1 ;# Connection to server has been reset.140 private variable _click ;# Info used for rotate operations.141 private variable _limits ;# Autoscale min/max for all axes142 private variable _view ;# View params for 3D view143 private variable _isomarkers ;# array of isosurface level values 0..1137 private variable _dataset2flow; # Maps dataobj-component to a flow. 138 139 private variable _reset 1; # Connection to server has been reset. 140 private variable _click; # Info used for rotate operations. 141 private variable _limits; # Autoscale min/max for all axes 142 private variable _view; # View params for 3D view 143 private variable _isomarkers; # array of isosurface level values 0..1 144 144 private variable _settings 145 private variable _activeTf "" ;# Currently active transfer function146 private variable _first "" ;# This is the topmost volume.147 private variable _volcomponents ;# Maps component name to list of148 ;# dataobj-component tags149 private variable _componentsList ;# List of components found145 private variable _activeTf ""; # Currently active transfer function 146 private variable _first ""; # This is the topmost volume. 147 private variable _volcomponents; # Maps component name to list of 148 # dataobj-component tags 149 private variable _componentsList; # List of components found 150 150 private variable _nextToken 0 151 151 private variable _icon 0 … … 157 157 private variable _gotoPending 0 158 158 159 private common _downloadPopup ;# download options from popup159 private common _downloadPopup; # download options from popup 160 160 private common _hardcopy 161 161 } -
branches/1.6/gui/scripts/nanovisviewer.tcl
r6242 r6265 113 113 114 114 private variable _arcball "" 115 private variable _dlist "" ;# list of data objects116 private variable _obj2ovride ;# maps dataobj => style override117 private variable _serverDatasets ;# contains all the dataobj-component118 ;# to volumes in the server119 private variable _recvdDatasets ;# list of data objs to send to server120 private variable _dataset2style ;# maps dataobj-component to transfunc121 private variable _style2datasets ;# maps tf back to list of115 private variable _dlist ""; # list of data objects 116 private variable _obj2ovride; # maps dataobj => style override 117 private variable _serverDatasets; # contains all the dataobj-component 118 # to volumes in the server 119 private variable _recvdDatasets; # list of data objs to send to server 120 private variable _dataset2style; # maps dataobj-component to transfunc 121 private variable _style2datasets; # maps tf back to list of 122 122 # dataobj-components using the tf. 123 123 124 private variable _reset 1 ;# Connection to server has been reset.125 private variable _click ;# Info used for rotate operations.126 private variable _limits ;# Autoscale min/max for all axes127 private variable _view ;# View params for 3D view128 private variable _isomarkers ;# array of isosurface level values 0..1124 private variable _reset 1; # Connection to server has been reset. 125 private variable _click; # Info used for rotate operations. 126 private variable _limits; # Autoscale min/max for all axes 127 private variable _view; # View params for 3D view 128 private variable _isomarkers; # array of isosurface level values 0..1 129 129 # Array of transfer functions in server. If 0 the transfer has been 130 130 # defined but not loaded. If 1 the transfer function has been named … … 132 132 private variable _activeTfs 133 133 private variable _settings 134 private variable _first "" ;# This is the topmost volume.134 private variable _first ""; # This is the topmost volume. 135 135 private variable _width 0 136 136 private variable _height 0 … … 138 138 private variable _resizeLegendPending 0 139 139 140 private common _downloadPopup ;# download options from popup140 private common _downloadPopup; # download options from popup 141 141 private common _hardcopy 142 142 } -
branches/1.6/gui/scripts/vtkheightmapviewer.tcl
r6237 r6265 951 951 952 952 set _first "" 953 # Start off with no datasets arevisible.953 # Start off with no datasets visible. 954 954 SendCmd "dataset visible 0" 955 955 set scale [GetHeightmapScale] -
branches/1.6/gui/scripts/vtkimageviewer.tcl
r6237 r6265 930 930 931 931 set _first "" 932 # Start off with no datasets arevisible.932 # Start off with no datasets visible. 933 933 SendCmd "dataset visible 0" 934 934 foreach dataobj [get -objects] {
Note: See TracChangeset
for help on using the changeset viewer.