File: multipleIso.tcl

package info (click to toggle)
vtk 5.8.0-13
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 130,524 kB
  • sloc: cpp: 1,129,256; ansic: 708,203; tcl: 48,526; python: 20,875; xml: 6,779; yacc: 4,208; perl: 3,121; java: 2,788; lex: 931; sh: 660; asm: 471; makefile: 299
file content (73 lines) | stat: -rw-r--r-- 2,030 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package require vtk
package require vtkinteraction

# get the interactor ui

## Graphics stuff
# Create the RenderWindow, Renderer and both Actors
#
vtkRenderer ren1
vtkRenderWindow renWin
    renWin AddRenderer ren1
vtkRenderWindowInteractor iren
    iren SetRenderWindow renWin

vtkPLOT3DReader pl3d
    pl3d SetXYZFileName "$VTK_DATA_ROOT/Data/combxyz.bin"
    pl3d SetQFileName "$VTK_DATA_ROOT/Data/combq.bin"
    pl3d SetScalarFunctionNumber 100
    pl3d SetVectorFunctionNumber 202
    pl3d Update
set range [[[[pl3d GetOutput] GetPointData] GetScalars] GetRange]
set min [lindex $range 0]
set max [lindex $range 1]
set value [expr ($min + $max) / 2.0]

vtkContourFilter cf
    cf SetInputConnection [pl3d GetOutputPort]
    cf SetValue 0 $value
    cf UseScalarTreeOn

set numberOfContours 5
set epsilon [expr double($max - $min) / double($numberOfContours * 10)]
set min [expr $min + $epsilon]
set max [expr $max - $epsilon]

for {set i 1} { $i <= $numberOfContours } {incr i} {
  cf SetValue 0 [expr $min + (($i - 1) / double($numberOfContours - 1) )*($max - $min)]
  cf Update
  vtkPolyData pd$i
    pd$i CopyStructure [cf GetOutput]
    [pd$i GetPointData] DeepCopy [[cf GetOutput] GetPointData]
  vtkPolyDataMapper mapper$i
    mapper$i SetInput pd$i
    eval mapper$i SetScalarRange \
      [[[[pl3d GetOutput] GetPointData] GetScalars] GetRange]
  vtkActor actor$i
    actor$i AddPosition 0 [expr $i * 12] 0
  actor$i SetMapper mapper$i
  ren1 AddActor actor$i
}

# Add the actors to the renderer, set the background and size
#
ren1 SetBackground .3 .3 .3
renWin SetSize 450 150

set cam1 [ren1 GetActiveCamera]
[ren1 GetActiveCamera] SetPosition -36.3762 32.3855 51.3652
[ren1 GetActiveCamera] SetFocalPoint 8.255 33.3861 29.7687
[ren1 GetActiveCamera] SetViewAngle 30
[ren1 GetActiveCamera] SetViewUp 0 0 1
ren1 ResetCameraClippingRange

iren Initialize

# render the image
#
iren AddObserver UserEvent {wm deiconify .vtkInteract}


# prevent the tk window from showing up then start the event loop
wm withdraw .