Changeset 4699 for trunk/gui/scripts/vtksurfaceviewer.tcl
- Timestamp:
- Nov 11, 2014, 1:50:16 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/gui/scripts/vtksurfaceviewer.tcl
r4682 r4699 57 57 public method get {args} 58 58 public method isconnected {} 59 public method limits { colormap }60 59 public method parameters {title args} { 61 60 # do nothing … … 1500 1499 SendCmd "outline color $rgb" 1501 1500 } 1502 }1503 1504 itcl::body Rappture::VtkSurfaceViewer::limits { dataobj } {1505 foreach { limits(xmin) limits(xmax) } [$dataobj limits x] break1506 foreach { limits(ymin) limits(ymax) } [$dataobj limits y] break1507 foreach { limits(zmin) limits(zmax) } [$dataobj limits z] break1508 foreach { limits(vmin) limits(vmax) } [$dataobj limits v] break1509 return [array get limits]1510 1501 } 1511 1502
Note: See TracChangeset
for help on using the changeset viewer.