]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/bbs/appli/exampleVectorsVisu.bbs
aab35e243836331bddcbe5d9a6e1f9568ef8996b
[creaVtk.git] / bbtk_creaVtk_PKG / bbs / appli / exampleVectorsVisu.bbs
1 # ----------------------------------
2 # - BBTKGEditor v 1.4 BBS BlackBox Script
3 # - /home/davila/Creatis/creaVtk/bbtk_creaVtk_PKG/bbs/appli/exampleVectorsVisu.bbs
4 # ----------------------------------
5
6 # BBTK GEditor Script
7 # ----------------------
8
9 include std
10 include itkvtk
11 include vtk
12 include creaVtk
13 include creaMaracasVisu
14 include wx
15
16 author "Author ??"
17 description "Description ??"
18 category "<VOID>"
19
20 new MaskPoint Box01
21   set Box01.Ratio "1"
22
23 new VectorsVisu Box02
24   set Box02.ScaleFactor "100"
25
26 new ViewerNV Box03
27   set Box03.nTypeView "5"
28
29 new CommandButton Box04
30   set Box04.Label "Run"
31
32 new LayoutSplit Box05
33   set Box05.Proportion "10"
34
35 new FileSelector Box06
36
37 new LoadHola Box07
38
39 new StructuredPointsReader Box08
40   set Box08.In "/home/davila/Creatis/creaVtk/data/Vectors.vtk"
41
42
43 connect Box01.Out Box02.In
44
45 connect Box03.Renderer1 Box02.Renderer
46
47 connect Box04.BoxChange Box02.BoxExecute
48
49 connect Box03.Widget Box05.Widget2
50
51 connect Box04.Widget Box05.Widget1
52
53 connect Box07.Out Box03.In
54
55 connect Box08.Out Box01.In
56
57
58
59 # Complex input ports
60 exec Box05