Changeset 6142


Ignore:
Timestamp:
Mar 19, 2016, 5:10:54 PM (8 years ago)
Author:
ldelgass
Message:

minor cleanups

Location:
trunk/gui/scripts
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/gui/scripts/vtkglyphviewer.tcl

    r6052 r6142  
    7070    private method BuildDownloadPopup { widget command }
    7171    private method BuildGlyphTab {}
    72     private method DrawLegend {}
    7372    private method Combo { option }
    7473    private method Connect {}
     
    7776    private method DoResize {}
    7877    private method DoRotate {}
     78    private method DrawLegend {}
    7979    private method EnterLegend { x y }
     80    private method EventuallyRequestLegend {}
    8081    private method EventuallyResize { w h }
    8182    private method EventuallyRotate { q }
    82     private method EventuallyRequestLegend {}
    8383    private method EventuallySetCutplane { axis args }
    8484    private method GetImage { args }
    8585    private method GetVtkData { args }
    86     private method InitSettings { args  }
     86    private method InitSettings { args }
    8787    private method IsValidObject { dataobj }
    8888    private method LeaveLegend {}
     
    100100    private method RequestLegend {}
    101101    private method Rotate {option x y}
     102    private method SetCurrentColormap { color }
    102103    private method SetLegendTip { x y }
    103104    private method SetObjectStyle { dataobj comp }
     105    private method SetOrientation { side }
    104106    private method Slice {option args}
    105     private method SetCurrentColormap { color }
    106     private method SetOrientation { side }
    107107    private method ViewToQuaternion {} {
    108108        return [list $_view(-qw) $_view(-qx) $_view(-qy) $_view(-qz)]
     
    546546# USAGE: delete ?<dataobj1> <dataobj2> ...?
    547547#
    548 #    Clients use this to delete a dataobj from the plot.  If no dataobjs
    549 #    are specified, then all dataobjs are deleted.  No data objects are
    550 #    deleted.  They are only removed from the display list.
    551 #
     548# Clients use this to delete a dataobj from the plot.  If no dataobjs
     549# are specified, then all dataobjs are deleted.  No data objects are
     550# deleted.  They are only removed from the display list.
    552551# ----------------------------------------------------------------------
    553552itcl::body Rappture::VtkGlyphViewer::delete {args} {
  • trunk/gui/scripts/vtkheightmapviewer.tcl

    r6052 r6142  
    513513# USAGE: delete ?<dataobj1> <dataobj2> ...?
    514514#
    515 #       Clients use this to delete a dataobj from the plot.  If no dataobjs
    516 #       are specified, then all dataobjs are deleted.  No data objects are
    517 #       deleted.  They are only removed from the display list.
    518 #
     515# Clients use this to delete a dataobj from the plot.  If no dataobjs
     516# are specified, then all dataobjs are deleted.  No data objects are
     517# deleted.  They are only removed from the display list.
    519518# ----------------------------------------------------------------------
    520519itcl::body Rappture::VtkHeightmapViewer::delete {args} {
  • trunk/gui/scripts/vtkimageviewer.tcl

    r6052 r6142  
    503503# USAGE: delete ?<dataobj1> <dataobj2> ...?
    504504#
    505 #       Clients use this to delete a dataobj from the plot.  If no dataobjs
    506 #       are specified, then all dataobjs are deleted.  No data objects are
    507 #       deleted.  They are only removed from the display list.
    508 #
     505# Clients use this to delete a dataobj from the plot.  If no dataobjs
     506# are specified, then all dataobjs are deleted.  No data objects are
     507# deleted.  They are only removed from the display list.
    509508# ----------------------------------------------------------------------
    510509itcl::body Rappture::VtkImageViewer::delete {args} {
  • trunk/gui/scripts/vtkisosurfaceviewer.tcl

    r6052 r6142  
    647647# USAGE: delete ?<dataobj1> <dataobj2> ...?
    648648#
    649 #       Clients use this to delete a dataobj from the plot.  If no dataobjs
    650 #       are specified, then all dataobjs are deleted.  No data objects are
    651 #       deleted.  They are only removed from the display list.
    652 #
     649# Clients use this to delete a dataobj from the plot.  If no dataobjs
     650# are specified, then all dataobjs are deleted.  No data objects are
     651# deleted.  They are only removed from the display list.
    653652# ----------------------------------------------------------------------
    654653itcl::body Rappture::VtkIsosurfaceViewer::delete {args} {
  • trunk/gui/scripts/vtkmeshviewer.tcl

    r6052 r6142  
    437437# USAGE: delete ?<dataobj1> <dataobj2> ...?
    438438#
    439 #       Clients use this to delete a dataobj from the plot.  If no dataobjs
    440 #       are specified, then all dataobjs are deleted.  No data objects are
    441 #       deleted.  They are only removed from the display list.
    442 #
     439# Clients use this to delete a dataobj from the plot.  If no dataobjs
     440# are specified, then all dataobjs are deleted.  No data objects are
     441# deleted.  They are only removed from the display list.
    443442# ----------------------------------------------------------------------
    444443itcl::body Rappture::VtkMeshViewer::delete {args} {
  • trunk/gui/scripts/vtkstreamlinesviewer.tcl

    r6130 r6142  
    561561# USAGE: delete ?<dataobj1> <dataobj2> ...?
    562562#
    563 #       Clients use this to delete a dataobj from the plot.  If no dataobjs
    564 #       are specified, then all dataobjs are deleted.  No data objects are
    565 #       deleted.  They are only removed from the display list.
    566 #
     563# Clients use this to delete a dataobj from the plot.  If no dataobjs
     564# are specified, then all dataobjs are deleted.  No data objects are
     565# deleted.  They are only removed from the display list.
    567566# ----------------------------------------------------------------------
    568567itcl::body Rappture::VtkStreamlinesViewer::delete {args} {
  • trunk/gui/scripts/vtksurfaceviewer.tcl

    r6052 r6142  
    504504# USAGE: delete ?<dataobj1> <dataobj2> ...?
    505505#
    506 #       Clients use this to delete a dataobj from the plot.  If no dataobjs
    507 #       are specified, then all dataobjs are deleted.  No data objects are
    508 #       deleted.  They are only removed from the display list.
    509 #
     506# Clients use this to delete a dataobj from the plot.  If no dataobjs
     507# are specified, then all dataobjs are deleted.  No data objects are
     508# deleted.  They are only removed from the display list.
    510509# ----------------------------------------------------------------------
    511510itcl::body Rappture::VtkSurfaceViewer::delete {args} {
  • trunk/gui/scripts/vtkviewer.tcl

    r6052 r6142  
    621621# USAGE: delete ?<dataobj1> <dataobj2> ...?
    622622#
    623 #       Clients use this to delete a dataobj from the plot.  If no dataobjs
    624 #       are specified, then all dataobjs are deleted.  No data objects are
    625 #       deleted.  They are only removed from the display list.
    626 #
     623# Clients use this to delete a dataobj from the plot.  If no dataobjs
     624# are specified, then all dataobjs are deleted.  No data objects are
     625# deleted.  They are only removed from the display list.
    627626# ----------------------------------------------------------------------
    628627itcl::body Rappture::VtkViewer::delete {args} {
Note: See TracChangeset for help on using the changeset viewer.