]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/src/bbcreaVtkCutter.cxx
742a700036b835569ae09c414d51850e95a37ea0
[creaVtk.git] / bbtk_creaVtk_PKG / src / bbcreaVtkCutter.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 "bbcreaVtkCutter.h"
5 #include "bbcreaVtkPackage.h"
6 #include "vtkCutter.h"
7
8 namespace bbcreaVtk
9 {
10
11 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaVtk,Cutter)
12 BBTK_BLACK_BOX_IMPLEMENTATION(Cutter,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 Cutter::Process()
17 {
18
19 // THE MAIN PROCESSING METHOD BODY
20 //   Here we simply set the input 'In' value to the output 'Out'
21 //   And print out the output value
22 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
23 //    void bbSet{Input|Output}NAME(const TYPE&)
24 //    const TYPE& bbGet{Input|Output}NAME() const 
25 //    Where :
26 //    * NAME is the name of the input/output
27 //      (the one provided in the attribute 'name' of the tag 'input')
28 //    * TYPE is the C++ type of the input/output
29 //      (the one provided in the attribute 'type' of the tag 'input')
30 //    bbSetOutputOut( bbGetInputIn() );
31 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
32   
33   //  See example in:
34   //  https://kitware.github.io/vtk-examples/site/Cxx/VisualizationAlgorithms/Cutter/
35   
36     printf("EED Cutter::Process start this=%p   ImFu=%p In=%p\n", this, bbGetInputImplicitFunction() , bbGetInputIn() );
37     if ( (bbGetInputActive()==true) && (bbGetInputIn()!=NULL) )
38     {
39         vtkCutter *cutter;
40         cutter = vtkCutter::New();
41         cutter->SetInputData( bbGetInputIn() );
42         cutter->SetCutFunction( bbGetInputImplicitFunction() );
43         cutter->Update();
44         bbSetOutputOut( cutter->GetOutput() );
45     } else {
46         bbSetOutputOut( NULL );
47     }
48 }
49
50 //===== 
51 // 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)
52 //===== 
53 void Cutter::bbUserSetDefaultValues()
54 {
55 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
56 //    Here we initialize the input 'In' to 0
57 //   bbSetInputIn(NULL);
58     bbSetInputActive( true );
59     bbSetOutputOut( NULL );
60 }
61 //===== 
62 // 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)
63 //===== 
64 void Cutter::bbUserInitializeProcessing()
65 {
66
67 //  THE INITIALIZATION METHOD BODY :
68 //    Here does nothing 
69 //    but this is where you should allocate the internal/output pointers 
70 //    if any 
71
72   
73 }
74 //===== 
75 // 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)
76 //===== 
77 void Cutter::bbUserFinalizeProcessing()
78 {
79
80 //  THE FINALIZATION METHOD BODY :
81 //    Here does nothing 
82 //    but this is where you should desallocate the internal/output pointers 
83 //    if any
84   
85 }
86
87 }// EO namespace bbcreaVtk
88
89