Ignore:
Timestamp:
Jun 20, 2013, 11:26:41 AM (11 years ago)
Author:
gah
Message:

add experimental tool parameter handling to strings (textentry)

File:
1 edited

Legend:

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

    r3699 r3700  
    5353# to if the same dataset can be viewed in more than one way.
    5454#  o Any 2D dataset can be viewed as a contour/heightmap.
    55 #  o Any 3D dataset can be viewed as a isosurface. 
     55#  o Any 3D dataset can be viewed as a isosurface.  o
    5656#  o Any 2D dataset with vector data can be streamlines. 
    5757#  o Any 3D uniform rectilinear dataset can be viewed as a volume.
    5858#  o Any 3D dataset with vector data can be streamlines or flow.
     59#   
     60#  Vector data 2/3 streamlines
     61#  Scalar data 1/
    5962#
    6063# Need <views> to properly do things like qdot: volume with a polydata
     
    12911294        }
    12921295    }
     1296   
    12931297    lappend limits v [list $vmin $vmax]
    12941298    set _comp2limits($cname) $limits
     
    13351339            set vtkassoc "CELL_DATA"
    13361340        } elseif { $_comp2assoc($cname) == "fielddata" } {
    1337             set vtkassoc "FIELD_DATA"
     1341            set vtkassoc "FIELD"
    13381342        } else {
    13391343            error "unknown association \"$_comp2assoc($cname)\""
     
    13501354            error "unknown element type \"$_comp2type($cname)\""
    13511355        }
    1352         append out "[$vector range 0 end]\n"
     1356        append out [$vector range 0 end]
     1357        append out "\n"
    13531358        if 0 {
    13541359            VerifyVtkDataSet $out
Note: See TracChangeset for help on using the changeset viewer.