]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/src/bbcreaVtkStlReader.cxx
#3251 creaVtk Feature New Normal - STL read write and Mesh_reduction
[creaVtk.git] / bbtk_creaVtk_PKG / src / bbcreaVtkStlReader.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 "bbcreaVtkStlReader.h"
5 #include "bbcreaVtkPackage.h"
6
7 #include "vtkSTLReader.h"
8
9 namespace bbcreaVtk
10 {
11
12 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaVtk,StlReader)
13 BBTK_BLACK_BOX_IMPLEMENTATION(StlReader,bbtk::AtomicBlackBox);
14 //===== 
15 // 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)
16 //===== 
17 void StlReader::Process()
18 {
19
20 // THE MAIN PROCESSING METHOD BODY
21 //   Here we simply set the input 'In' value to the output 'Out'
22 //   And print out the output value
23 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
24 //    void bbSet{Input|Output}NAME(const TYPE&)
25 //    const TYPE& bbGet{Input|Output}NAME() const 
26 //    Where :
27 //    * NAME is the name of the input/output
28 //      (the one provided in the attribute 'name' of the tag 'input')
29 //    * TYPE is the C++ type of the input/output
30 //      (the one provided in the attribute 'type' of the tag 'input')
31
32         vtkSTLReader *reader = vtkSTLReader::New();
33         reader->SetFileName( bbGetInputFileName().c_str() );  
34         reader->Update();
35         bbSetOutputOut( reader->GetOutput() );
36 }
37 //===== 
38 // 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)
39 //===== 
40 void StlReader::bbUserSetDefaultValues()
41 {
42
43 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
44 //    Here we initialize the input 'In' to 0
45    bbSetOutputOut(NULL);
46   
47 }
48 //===== 
49 // 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)
50 //===== 
51 void StlReader::bbUserInitializeProcessing()
52 {
53
54 //  THE INITIALIZATION METHOD BODY :
55 //    Here does nothing 
56 //    but this is where you should allocate the internal/output pointers 
57 //    if any 
58
59   
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 StlReader::bbUserFinalizeProcessing()
65 {
66
67 //  THE FINALIZATION METHOD BODY :
68 //    Here does nothing 
69 //    but this is where you should desallocate the internal/output pointers 
70 //    if any
71   
72 }
73 }
74 // EO namespace bbcreaVtk
75
76