Changeset 4790
- Timestamp:
- Nov 25, 2014 9:29:34 PM (9 years ago)
- Location:
- branches/1.3/gui/scripts
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.3/gui/scripts/curve.tcl
r4008 r4790 112 112 # USAGE: values ?<name>? 113 113 # 114 # Returns the xvec for the specified curve component <name>.114 # Returns the yvec for the specified curve component <name>. 115 115 # If the name is not specified, then it returns the vectors for the 116 116 # overall curve (sum of all components). -
branches/1.3/gui/scripts/field.tcl
r4719 r4790 368 368 } 369 369 if {[info exists _comp2unirect2d($cname)]} { 370 return [$_comp2unirect2d($cname) values]370 return $_values 371 371 } 372 372 if {[info exists _comp2unirect3d($cname)]} { -
branches/1.3/gui/scripts/unirect2d.tcl
r4497 r4790 176 176 # ---------------------------------------------------------------------- 177 177 # method blob 178 # Returns a base64 encoded, gzipped Tcl list that represents the 179 # Tcl command and data to recreate the uniform rectangular grid 180 # on the nanovis server. 178 # Returns a Tcl list that represents the Tcl command and data to 179 # recreate the uniform rectangular grid on the nanovis server. 181 180 # ---------------------------------------------------------------------- 182 181 itcl::body Rappture::Unirect2d::blob {} { … … 189 188 # ---------------------------------------------------------------------- 190 189 # method mesh 191 # Returns a base64 encoded, gzipped Tcl list that represents the 192 # Tcl command and data to recreate the uniform rectangular grid 193 # on the nanovis server. 190 # Returns a Tcl list that represents the mesh limits and dims. 194 191 # ---------------------------------------------------------------------- 195 192 itcl::body Rappture::Unirect2d::mesh {} { -
branches/1.3/gui/scripts/unirect3d.tcl
r4494 r4790 41 41 private variable _xMax 0 42 42 private variable _xMin 0 43 private variable _xNum 0; # Number of points along x-axis .43 private variable _xNum 0; # Number of points along x-axis 44 44 private variable _yMax 0 45 45 private variable _yMin 0 46 private variable _yNum 0; # Number of points along y-axis .46 private variable _yNum 0; # Number of points along y-axis 47 47 private variable _zMax 0 48 48 private variable _zMin 0 49 private variable _zNum 0; # Number of points along z-axis .50 private variable _compNum 1; # Number of components in values .51 private variable _values ""; # BLT vector containing the z-values49 private variable _zNum 0; # Number of points along z-axis 50 private variable _compNum 1; # Number of components in values 51 private variable _values ""; # BLT vector containing the values 52 52 private variable _hints 53 53 } … … 124 124 # ---------------------------------------------------------------------- 125 125 # method blob 126 # Returns a base64 encoded, gzipped Tcl list that represents the 127 # Tcl command and data to recreate the uniform rectangular grid 128 # on the nanovis server. 126 # Returns a Tcl list that represents the Tcl command and data to 127 # recreate the uniform rectangular grid on the nanovis server. 129 128 # ---------------------------------------------------------------------- 130 129 itcl::body Rappture::Unirect3d::blob {} { … … 142 141 # ---------------------------------------------------------------------- 143 142 # method mesh 144 # Returns a base64 encoded, gzipped Tcl list that represents the 145 # Tcl command and data to recreate the uniform rectangular grid 146 # on the nanovis server. 143 # Returns a Tcl list that represents the points of the uniform 144 # grid. 147 145 # ---------------------------------------------------------------------- 148 146 itcl::body Rappture::Unirect3d::mesh {} {
Note: See TracChangeset
for help on using the changeset viewer.