]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/src/bbcreaVtkGenerateArrowSource.cxx
#2671 creaVtk Feature New Normal - VectorsExtraction
[creaVtk.git] / bbtk_creaVtk_PKG / src / bbcreaVtkGenerateArrowSource.cxx
1 //===== 
2 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
3 //===== 
4 #include "bbcreaVtkGenerateArrowSource.h"
5 #include "bbcreaVtkPackage.h"
6 namespace bbcreaVtk
7 {
8
9 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaVtk,GenerateArrowSource)
10 BBTK_BLACK_BOX_IMPLEMENTATION(GenerateArrowSource,bbtk::AtomicBlackBox);
11 //===== 
12 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
13 //===== 
14 void GenerateArrowSource::Process()
15 {
16
17 // THE MAIN PROCESSING METHOD BODY
18 //   Here we simply set the input 'In' value to the output 'Out'
19 //   And print out the output value
20 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
21 //    void bbSet{Input|Output}NAME(const TYPE&)
22 //    const TYPE& bbGet{Input|Output}NAME() const 
23 //    Where :
24 //    * NAME is the name of the input/output
25 //      (the one provided in the attribute 'name' of the tag 'input')
26 //    * TYPE is the C++ type of the input/output
27 //      (the one provided in the attribute 'type' of the tag 'input')
28    
29         vtkArrowSource     *arrowSource = vtkArrowSource::New();
30
31         arrowSource->SetTipResolution(3);
32         //arrowSource->SetTipRadius(1.0);
33         //arrowSource->SetTipLength(1.0);
34         arrowSource->SetShaftRadius(0.04);
35         arrowSource->Update();
36
37         bbSetOutputArrowSource(arrowSource->GetOutput());
38
39
40 }
41 //===== 
42 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
43 //===== 
44 void GenerateArrowSource::bbUserSetDefaultValues()
45 {
46
47 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
48 //    Here we initialize the input 'In' to 0
49   // bbSetInputIn(0);
50   
51 }
52 //===== 
53 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
54 //===== 
55 void GenerateArrowSource::bbUserInitializeProcessing()
56 {
57
58 //  THE INITIALIZATION METHOD BODY :
59 //    Here does nothing 
60 //    but this is where you should allocate the internal/output pointers 
61 //    if any 
62
63   
64 }
65 //===== 
66 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
67 //===== 
68 void GenerateArrowSource::bbUserFinalizeProcessing()
69 {
70
71 //  THE FINALIZATION METHOD BODY :
72 //    Here does nothing 
73 //    but this is where you should desallocate the internal/output pointers 
74 //    if any
75   
76 }
77 }
78 // EO namespace bbcreaVtk
79
80