]> Creatis software - bbtk.git/blob - packages/wxvtk/bbs/appli/exampleImagePlanes.bbs
#3107 BBTK Bug New Normal - branch vtk7itk4 compilation with vtk7
[bbtk.git] / packages / wxvtk / bbs / appli / exampleImagePlanes.bbs
1 # ----------------------------------
2 # - BBTKGEditor v 1.4 BBS BlackBox Script
3 # - /tmpEED/creaTools2/creatools_source/bbtk/packages/wxvtk/bbs/appli/exampleImagePlanes.bbs
4 # ----------------------------------
5
6 # BBTK GEditor Script
7 # ----------------------
8
9 include std
10 include itkvtk
11 include vtk
12 include wxvtk
13
14 author "laurent.guigues@creatis.insa-lyon.fr"
15 description "Example of the box vtk::ImagePlanes."
16 category "example"
17
18 new vtk:LoadHola reader
19
20 new vtk:ImagePlanes planes
21
22 new wxvtk:Viewer3D viewer
23   set viewer.WinHeight "400"
24   set viewer.WinTitle "ExampleImagePlanes"
25   set viewer.WinWidth "350"
26
27
28 connect reader.Out planes.In
29
30 connect planes.PlaneX viewer.Obs1
31
32 connect planes.PlaneY viewer.Obs2
33
34 connect planes.PlaneZ viewer.Obs3
35
36
37
38 # Complex input ports
39 exec viewer