]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/src/bbcreaVtkStlReader.cxx
#3525 Python descrition
[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 // 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         vtkSTLReader *reader = vtkSTLReader::New();
31         reader->SetFileName( bbGetInputFileName().c_str() );  
32         reader->Update();
33         bbSetOutputOut( reader->GetOutput() );
34 }
35
36 //=====
37 // 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)
38 //===== 
39 void StlReader::bbUserSetDefaultValues()
40 {
41 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
42 //    Here we initialize the input 'In' to 0
43    bbSetOutputOut(NULL);
44 }
45
46 //=====
47 // 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)
48 //===== 
49 void StlReader::bbUserInitializeProcessing()
50 {
51 //  THE INITIALIZATION METHOD BODY :
52 //    Here does nothing 
53 //    but this is where you should allocate the internal/output pointers 
54 //    if any
55 }
56
57 //=====
58 // 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)
59 //===== 
60 void StlReader::bbUserFinalizeProcessing()
61 {
62 //  THE FINALIZATION METHOD BODY :
63 //    Here does nothing 
64 //    but this is where you should desallocate the internal/output pointers 
65 //    if any
66 }
67
68 }// EO namespace bbcreaVtk
69
70