]> Creatis software - bbtk.git/blob - packages/vtk/bbs/appli/exampleText2D.bbs
Text2D vtk
[bbtk.git] / packages / vtk / bbs / appli / exampleText2D.bbs
1 # ----------------------------------
2 # - BBTKGEditor v 1.4 BBS BlackBox Script
3 # - /home/davila/Creatis/All-Vtk_5-10-1/creatools_source/bbtk/packages/vtk/bbs/appli/exampleText2D.bbs
4 # ----------------------------------
5
6 # BBTK GEditor Script
7 # ----------------------
8
9 include std
10 include itkvtk
11 include vtk
12 include creaMaracasVisu
13 include std
14
15 author "Author ??"
16 description "Description ??"
17 category "<VOID>"
18
19 new LoadHola Box00
20
21 new ViewerNV Box01
22
23 new Text2D Box02
24   set Box02.In "hola"
25
26 new ConcatStrings Box03
27
28 new ImageVtkProperties Box04
29
30 new ConcatStrings Box05
31
32
33 connect Box00.Out Box01.In
34
35 connect Box01.Renderer4 Box02.Renderer
36
37 connect Box01.Point Box03.In1
38
39 connect Box03.Out Box02.Point
40
41 connect Box01.BoxChange Box03.BoxExecute
42
43 connect Box01.BoxChange Box02.BoxExecute
44
45 connect Box00.Out Box04.In
46
47 connect Box04.Spacing Box05.In1
48
49 connect Box05.Out Box02.Spacing
50
51 connect Box01.Point Box02.In
52
53
54
55 # Complex input ports
56 exec Box01
57 exec Box02