]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/src/bbcreaVtkMeshCutByAxis.cxx
3223 creaVtk Feature New Normal - vtk8itk4wx3-mingw64
[creaVtk.git] / bbtk_creaVtk_PKG / src / bbcreaVtkMeshCutByAxis.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 "bbcreaVtkMeshCutByAxis.h"
5 #include "bbcreaVtkPackage.h"
6
7 #include <vtkBox.h>
8 #include <vtkPlane.h>
9 #include <vtkClipPolyData.h>
10
11 namespace bbcreaVtk
12 {
13
14 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaVtk,MeshCutByAxis)
15 BBTK_BLACK_BOX_IMPLEMENTATION(MeshCutByAxis,bbtk::AtomicBlackBox);
16 //===== 
17 // 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)
18 //===== 
19 void MeshCutByAxis::Process()
20 {
21
22 // THE MAIN PROCESSING METHOD BODY
23 //   Here we simply set the input 'In' value to the output 'Out'
24 //   And print out the output value
25 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
26 //    void bbSet{Input|Output}NAME(const TYPE&)
27 //    const TYPE& bbGet{Input|Output}NAME() const 
28 //    Where :
29 //    * NAME is the name of the input/output
30 //      (the one provided in the attribute 'name' of the tag 'input')
31 //    * TYPE is the C++ type of the input/output
32 //      (the one provided in the attribute 'type' of the tag 'input')
33
34 //    bbSetOutputOut( bbGetInputIn() );
35 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
36
37                 int ok=0;
38                 int sb=1000;
39                 vtkPlane                *clipPlane      = vtkPlane::New();      
40                 vtkBox                  *clipBox        = vtkBox::New();        
41                 vtkClipPolyData *clipper        = vtkClipPolyData::New();
42 //EED 2017-01-01 Migration VTK7
43 #if VTK_MAJOR_VERSION <= 5
44             clipper             -> SetInput( bbGetInputIn() );
45 #else
46             clipper             -> SetInputData( bbGetInputIn() );
47 #endif
48                 clipper->SetInsideOut( bbGetInputInsideVol() );
49
50                 int a;  // correction border 
51                 if (bbGetInputInsideVol()==false)
52                 {
53                         a=1;
54                 } else {
55                         a=0;
56                 }
57
58                 int px=bbGetInputPoint()[0];
59                 int py=bbGetInputPoint()[1];
60                 int pz=bbGetInputPoint()[2];
61
62                 if ( bbGetInputType()=="x"              ) { clipPlane->SetNormal(1, 0, 0);                                                                              ok=1;   } else  
63                 if ( bbGetInputType()=="y"              ) { clipPlane->SetNormal(0, 1, 0);                                                                              ok=1;   } else
64                 if ( bbGetInputType()=="z"              ) { clipPlane->SetNormal(0, 0, 1);                                                                              ok=1;   } else
65
66                 if ( bbGetInputType()=="x+y+"   ) { clipBox->SetBounds(px       ,px+sb  ,py             ,py+sb  ,pz-sb  ,pz+sb  );      ok=2;   } else
67                 if ( bbGetInputType()=="x-y+"   ) { clipBox->SetBounds(px-sb,px+a       ,py             ,py+sb  ,pz-sb  ,pz+sb  );      ok=2;   } else
68                 if ( bbGetInputType()=="x+y-"   ) { clipBox->SetBounds(px       ,px+sb  ,py-sb  ,py+a   ,pz-sb  ,pz+sb  );      ok=2;   } else
69                 if ( bbGetInputType()=="x-y-"   ) { clipBox->SetBounds(px-sb,px+a       ,py-sb  ,py+a   ,pz-sb  ,pz+sb  );      ok=2;   } else
70
71                 if ( bbGetInputType()=="y+z+"   ) { clipBox->SetBounds(px-sb,px+sb      ,py             ,py+sb  ,pz             ,pz+sb  );      ok=2;   } else
72                 if ( bbGetInputType()=="y-z+"   ) { clipBox->SetBounds(px-sb,px+sb      ,py-sb  ,py+a   ,pz             ,pz+sb  );      ok=2;   } else
73                 if ( bbGetInputType()=="y+z-"   ) { clipBox->SetBounds(px-sb,px+sb      ,py             ,py+sb  ,pz-sb  ,pz+a   );      ok=2;   } else
74                 if ( bbGetInputType()=="y-z-"   ) { clipBox->SetBounds(px-sb,px+sb      ,py-sb  ,py+a   ,pz-sb  ,pz+a   );      ok=2;   } else
75
76                 if ( bbGetInputType()=="x+z+"   ) { clipBox->SetBounds(px       ,px+sb  ,py-sb  ,py+sb  ,pz             ,pz+sb  );      ok=2;   } else
77                 if ( bbGetInputType()=="x-z+"   ) { clipBox->SetBounds(px-sb,px+a       ,py-sb  ,py+sb  ,pz             ,pz+sb  );      ok=2;   } else
78                 if ( bbGetInputType()=="x+z-"   ) { clipBox->SetBounds(px       ,px+sb  ,py-sb  ,py+sb  ,pz-sb  ,pz+a   );      ok=2;   } else
79                 if ( bbGetInputType()=="x-z-"   ) { clipBox->SetBounds(px-sb,px+a       ,py-sb  ,py+sb  ,pz-sb  ,pz+a   );      ok=2;   } else
80
81
82                 if ( bbGetInputType()=="x+y+z+" ) { clipBox->SetBounds(px       ,px+sb  ,py             ,py+sb  ,pz     ,pz+sb  );      ok=2;   } else
83                 if ( bbGetInputType()=="x-y+z+" ) { clipBox->SetBounds(px-sb,px+a       ,py             ,py+sb  ,pz     ,pz+sb  );      ok=2;   } else
84                 if ( bbGetInputType()=="x+y-z+" ) { clipBox->SetBounds(px       ,px+sb  ,py-sb  ,py+a   ,pz     ,pz+sb  );      ok=2;   } else
85                 if ( bbGetInputType()=="x+y+z-" ) { clipBox->SetBounds(px       ,px+sb  ,py             ,py+sb  ,pz-sb  ,pz+a   );      ok=2;   } else
86                 if ( bbGetInputType()=="x-y-z+" ) { clipBox->SetBounds(px-sb,px+a       ,py-sb  ,py+a   ,pz     ,pz+sb  );      ok=2;   } else
87                 if ( bbGetInputType()=="x+y-z-" ) { clipBox->SetBounds(px       ,px+sb  ,py-sb  ,py+a   ,pz-sb  ,pz+a   );      ok=2;   } else
88                 if ( bbGetInputType()=="x-y+z-" ) { clipBox->SetBounds(px-sb,px+a       ,py             ,py+sb  ,pz-sb  ,pz+a   );      ok=2;   } else
89                 if ( bbGetInputType()=="x-y-z-" ) { clipBox->SetBounds(px-sb,px+a       ,py-sb  ,py+a   ,pz-sb  ,pz+a   );      ok=2;   } 
90
91                 if (ok==1) {
92                         clipPlane       -> SetOrigin(px,py,pz); 
93                         clipper         -> SetClipFunction(clipPlane);  
94                         bbSetOutputOut( clipper->GetOutput() ); 
95                 } else          if (ok==2) {
96                         
97                         clipper         -> SetClipFunction(clipBox);  
98                         bbSetOutputOut( clipper->GetOutput() ); 
99                 } else {
100                         bbSetOutputOut( bbGetInputIn() ); 
101                 } // ok
102 }
103 //===== 
104 // 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)
105 //===== 
106 void MeshCutByAxis::bbUserSetDefaultValues()
107 {
108
109 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
110 //    Here we initialize the input 'In' to 0
111    bbSetInputIn(NULL);
112    bbSetInputType("x+y+z+");
113    bbSetInputInsideVol(true);
114    std::vector<int> point;
115    point.push_back(0);
116    point.push_back(0);
117    point.push_back(0);
118    bbSetInputPoint(point);
119 }
120 //===== 
121 // 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)
122 //===== 
123 void MeshCutByAxis::bbUserInitializeProcessing()
124 {
125
126 //  THE INITIALIZATION METHOD BODY :
127 //    Here does nothing 
128 //    but this is where you should allocate the internal/output pointers 
129 //    if any 
130
131   
132 }
133 //===== 
134 // 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)
135 //===== 
136 void MeshCutByAxis::bbUserFinalizeProcessing()
137 {
138
139 //  THE FINALIZATION METHOD BODY :
140 //    Here does nothing 
141 //    but this is where you should desallocate the internal/output pointers 
142 //    if any
143   
144 }
145 }
146 // EO namespace bbcreaVtk
147
148