]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/bbs/appli/exampleVectorsVisu.bbs
3150 creaVtk Feature New Normal - PointPicker box
[creaVtk.git] / bbtk_creaVtk_PKG / bbs / appli / exampleVectorsVisu.bbs
1 # ----------------------------------
2 # - BBTKGEditor v 1.4 BBS BlackBox Script
3 # - /tmpEED/creaTools/creatools_source/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 include std
16
17 author "Author ??"
18 description "Description ??"
19 category "<VOID>"
20
21 new vtk:MaskPoint Box01
22   set Box01.Ratio "1"
23
24 new creaVtk:VectorsVisu Box02
25   set Box02.Active "true"
26   set Box02.ScaleFactor "1"
27
28 new creaMaracasVisu:ViewerNV Box03
29   set Box03.nTypeView "5"
30
31 new wx:CommandButton Box04
32   set Box04.Label "Run"
33
34 new wx:LayoutSplit Box05
35   set Box05.Proportion "10"
36
37 new wx:FileSelector Box06
38
39 new vtk:LoadHola Box07
40
41 new vtk:StructuredPointsReader Box08
42   set Box08.In "/home/davila/Creatis/creaVtk/data/Vectors.vtk"
43
44 new std:Configuration Box09
45
46 new std:ConcatStrings Box10
47   set Box10.In2 "/creaVtk/Vectors.vtk"
48
49
50 connect Box01.Out Box02.In
51
52 connect Box03.Renderer1 Box02.Renderer
53
54 connect Box04.BoxChange Box02.BoxExecute
55
56 connect Box03.Widget Box05.Widget2
57
58 connect Box04.Widget Box05.Widget1
59
60 connect Box07.Out Box03.In
61
62 connect Box08.Out Box01.In
63
64 connect Box09.DataPath Box10.In1
65
66 connect Box10.Out Box08.In
67
68
69
70 # Complex input ports
71 exec Box05