Changeset 4421


Ignore:
Timestamp:
Jun 24, 2014, 3:00:21 PM (10 years ago)
Author:
ldelgass
Message:

s/FixSettings/InitSettings

Location:
trunk/gui/scripts
Files:
3 edited

Legend:

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

    r4386 r4421  
    7272    protected method DoResize {}
    7373    protected method DoRotate {}
    74     protected method FixSettings { args  }
     74    protected method InitSettings { args  }
    7575    protected method KeyPress { key }
    7676    protected method KeyRelease { key }
     
    967967                SetTerrainStyle $_mapsettings(style)
    968968            } else {
    969                 FixSettings terrain-edges terrain-lighting \
     969                InitSettings terrain-edges terrain-lighting \
    970970                    terrain-vertscale terrain-wireframe
    971971            }
    972             FixSettings coords-visible
     972            InitSettings coords-visible
    973973        } else {
    974974            error "No map settings on reset"
     
    13051305
    13061306# ----------------------------------------------------------------------
    1307 # USAGE: FixSettings <what> ?<value>?
     1307# USAGE: InitSettings <what> ?<value>?
    13081308#
    13091309# Used internally to update rendering settings whenever parameters
     
    13111311# to the back end.
    13121312# ----------------------------------------------------------------------
    1313 itcl::body Rappture::MapViewer::FixSettings { args } {
     1313itcl::body Rappture::MapViewer::InitSettings { args } {
    13141314    foreach setting $args {
    13151315        AdjustSetting $setting
  • trunk/gui/scripts/vtkmeshviewer.tcl

    r4419 r4421  
    17411741    array set settings {
    17421742        -cloudstyle mesh
    1743         -color \#FFFFFF
     1743        -color white
    17441744        -edgecolor black
    17451745        -edges 1
  • trunk/gui/scripts/vtkviewer.tcl

    r4420 r4421  
    23902390        "glyphs" {
    23912391            array set settings {
    2392                 -color \#FFFFFF
     2392                -color white
    23932393                -edgecolor black
    23942394                -edges 0
     
    25552555            array set settings {
    25562556                -cloudstyle "mesh"
    2557                 -color \#FFFFFF
     2557                -color white
    25582558                -edgecolor black
    25592559                -edges 1
Note: See TracChangeset for help on using the changeset viewer.