]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/src/bbcreaVtkLinearExtrusionFilter.cxx
#3495 Extrude normals conflict
[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         printf("EED LinearExtrusionFilter::Process A\n");
66         if (bbGetInputScalarFactor()>1 )
67         {
68             printf("EED LinearExtrusionFilter::Process B\n");
69             vtkReverseSense * reverseSense = vtkReverseSense::New();
70             reverseSense->SetInputData( triangleFilter->GetOutput() );
71             reverseSense->ReverseNormalsOff();
72             reverseSense->ReverseCellsOn();
73             reverseSense->Update();
74             outputPolydata=reverseSense->GetOutput();
75         }
76         bbSetOutputOut( outputPolydata );
77     } else {
78         bbSetOutputOut( NULL );
79     }// if bbGetInputIn
80 }
81
82 //===== 
83 // 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)
84 //===== 
85 void LinearExtrusionFilter::bbUserSetDefaultValues()
86 {
87 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
88 //    Here we initialize the input 'In' to 0
89     extrude         = NULL;
90     triangleFilter  = NULL;
91     bbSetInputIn(NULL);
92     std::vector<double> dir;
93     dir.push_back(1);
94     dir.push_back(0);
95     dir.push_back(0);
96     bbSetInputDirection( dir );
97     bbSetInputScalarFactor(0);
98     bbSetOutputOut( NULL );
99 }
100
101 //===== 
102 // 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)
103 //===== 
104 void LinearExtrusionFilter::bbUserInitializeProcessing()
105 {
106 //  THE INITIALIZATION METHOD BODY :
107 //    Here does nothing 
108 //    but this is where you should allocate the internal/output pointers 
109 //    if any
110 }
111
112 //===== 
113 // 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)
114 //===== 
115 void LinearExtrusionFilter::bbUserFinalizeProcessing()
116 {
117 //  THE FINALIZATION METHOD BODY :
118 //    Here does nothing 
119 //    but this is where you should desallocate the internal/output pointers 
120 //    if any
121 }
122
123 }  // EO namespace bbcreaVtk
124
125