]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/src/bbcreaVtkLinearExtrusionFilter.cxx
#3513 CleanMeshWithPatch
[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     if (extrude!=NULL)
33     {
34         extrude->Delete();
35         extrude=NULL;
36     }
37     if (triangleFilter!=NULL)
38     {
39         triangleFilter->Delete();
40         triangleFilter=NULL;
41     }
42
43     if (bbGetInputIn()!=NULL)
44     {
45         std::vector<double>     dir             = bbGetInputDirection();
46                                 extrude         = vtkLinearExtrusionFilter::New();
47                                 triangleFilter  = vtkTriangleFilter::New();
48
49                 
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() * (-1) );
59         extrude->SetScaleFactor( bbGetInputScalarFactor()  );
60         extrude->Update();
61         triangleFilter->SetInputData( extrude->GetOutput() );
62         triangleFilter->Update( );
63         
64         vtkPolyData *outputPolydata = triangleFilter->GetOutput();
65         if (bbGetInputScalarFactor()>1 )
66         {
67             vtkReverseSense * reverseSense = vtkReverseSense::New();
68             reverseSense->SetInputData( triangleFilter->GetOutput() );
69             reverseSense->ReverseNormalsOff();
70             reverseSense->ReverseCellsOn();
71             reverseSense->Update();
72             outputPolydata=reverseSense->GetOutput();
73         }
74         bbSetOutputOut( outputPolydata );
75     } else {
76         bbSetOutputOut( NULL );
77     }// if bbGetInputIn
78 }
79
80 //===== 
81 // 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)
82 //===== 
83 void LinearExtrusionFilter::bbUserSetDefaultValues()
84 {
85 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
86 //    Here we initialize the input 'In' to 0
87     extrude         = NULL;
88     triangleFilter  = NULL;
89     bbSetInputIn(NULL);
90     std::vector<double> dir;
91     dir.push_back(1);
92     dir.push_back(0);
93     dir.push_back(0);
94     bbSetInputDirection( dir );
95     bbSetInputScalarFactor(0);
96     bbSetOutputOut( NULL );
97 }
98
99 //===== 
100 // 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)
101 //===== 
102 void LinearExtrusionFilter::bbUserInitializeProcessing()
103 {
104 //  THE INITIALIZATION METHOD BODY :
105 //    Here does nothing 
106 //    but this is where you should allocate the internal/output pointers 
107 //    if any
108 }
109
110 //===== 
111 // 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)
112 //===== 
113 void LinearExtrusionFilter::bbUserFinalizeProcessing()
114 {
115 //  THE FINALIZATION METHOD BODY :
116 //    Here does nothing 
117 //    but this is where you should desallocate the internal/output pointers 
118 //    if any
119 }
120
121 }  // EO namespace bbcreaVtk
122
123