]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/src/bbcreaVtkLinearExtrusionFilter.cxx
2b39efe8a1463a6c85188901682e363c273aeae3
[creaVtk.git] / bbtk_creaVtk_PKG / src / bbcreaVtkLinearExtrusionFilter.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 "bbcreaVtkLinearExtrusionFilter.h"
5 #include "bbcreaVtkPackage.h"
6 #include <vtkReverseSense.h>
7
8 namespace bbcreaVtk
9 {
10
11 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaVtk,LinearExtrusionFilter)
12 BBTK_BLACK_BOX_IMPLEMENTATION(LinearExtrusionFilter,bbtk::AtomicBlackBox);
13 //===== 
14 // 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)
15 //===== 
16 void LinearExtrusionFilter::Process()
17 {
18 // THE MAIN PROCESSING METHOD BODY
19 //   Here we simply set the input 'In' value to the output 'Out'
20 //   And print out the output value
21 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
22 //    void bbSet{Input|Output}NAME(const TYPE&)
23 //    const TYPE& bbGet{Input|Output}NAME() const 
24 //    Where :
25 //    * NAME is the name of the input/output
26 //      (the one provided in the attribute 'name' of the tag 'input')
27 //    * TYPE is the C++ type of the input/output
28 //      (the one provided in the attribute 'type' of the tag 'input')
29 //    bbSetOutputOut( bbGetInputIn() );
30 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
31     
32     printf("EED LinearExtrusionFilter::Process In=%p \n",bbGetInputIn() );
33
34     if (extrude!=NULL)
35     {
36         extrude->Delete();
37         extrude=NULL;
38     }
39     if (triangleFilter!=NULL)
40     {
41         triangleFilter->Delete();
42         triangleFilter=NULL;
43     }
44
45     if (bbGetInputIn()!=NULL)
46     {
47         std::vector<double>     dir             = bbGetInputDirection();
48                                 extrude         = vtkLinearExtrusionFilter::New();
49                                 triangleFilter  = vtkTriangleFilter::New();
50         extrude->SetInputData( bbGetInputIn() );
51         extrude->SetExtrusionTypeToNormalExtrusion();
52         if (dir.size()==3)
53         {
54             extrude->SetVector( dir[0],dir[1],dir[2] );
55         } else {
56             extrude->SetVector(1, 0, 0);
57         }
58         extrude->SetScaleFactor( bbGetInputScalarFactor() );
59         extrude->Update();
60         triangleFilter->SetInputData( extrude->GetOutput() );
61         triangleFilter->Update( );
62         bbSetOutputOut( triangleFilter->GetOutput() );
63     } else {
64         bbSetOutputOut( NULL );
65     }// if bbGetInputIn
66 }
67
68 //===== 
69 // 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)
70 //===== 
71 void LinearExtrusionFilter::bbUserSetDefaultValues()
72 {
73 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
74 //    Here we initialize the input 'In' to 0
75     extrude         = NULL;
76     triangleFilter  = NULL;
77     bbSetInputIn(NULL);
78     std::vector<double> dir;
79     dir.push_back(1);
80     dir.push_back(0);
81     dir.push_back(0);
82     bbSetInputDirection( dir );
83     bbSetInputScalarFactor(0);
84     bbSetOutputOut( NULL );
85 }
86
87 //===== 
88 // 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)
89 //===== 
90 void LinearExtrusionFilter::bbUserInitializeProcessing()
91 {
92 //  THE INITIALIZATION METHOD BODY :
93 //    Here does nothing 
94 //    but this is where you should allocate the internal/output pointers 
95 //    if any
96 }
97
98 //===== 
99 // 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)
100 //===== 
101 void LinearExtrusionFilter::bbUserFinalizeProcessing()
102 {
103 //  THE FINALIZATION METHOD BODY :
104 //    Here does nothing 
105 //    but this is where you should desallocate the internal/output pointers 
106 //    if any
107 }
108
109 }  // EO namespace bbcreaVtk
110
111