]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/src/bbcreaVtkLineProfile.cxx
#2446 creaVtk Feature New Normal - Stream Tracer, Stream Line (interface, widget)
[creaVtk.git] / bbtk_creaVtk_PKG / src / bbcreaVtkLineProfile.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 "bbcreaVtkLineProfile.h"
5 #include "bbcreaVtkPackage.h"
6 namespace bbcreaVtk
7 {
8
9 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaVtk,LineProfile)
10 BBTK_BLACK_BOX_IMPLEMENTATION(LineProfile,bbtk::AtomicBlackBox);
11 //===== 
12 // 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)
13 //===== 
14 void LineProfile::Process()
15 {
16
17 // THE MAIN PROCESSING METHOD BODY
18 //   Here we simply set the input 'In' value to the output 'Out'
19 //   And print out the output value
20 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
21 //    void bbSet{Input|Output}NAME(const TYPE&)
22 //    const TYPE& bbGet{Input|Output}NAME() const 
23 //    Where :
24 //    * NAME is the name of the input/output
25 //      (the one provided in the attribute 'name' of the tag 'input')
26 //    * TYPE is the C++ type of the input/output
27 //      (the one provided in the attribute 'type' of the tag 'input')
28
29
30 printf("EED LineProfile::Process Start\n");
31
32         std::vector<double> profileLst;
33         if ( (bbGetInputPoint1().size()==3) && (bbGetInputPoint2().size()==3) && (bbGetInputIn()!=NULL) ) 
34         {
35                 double x1 = bbGetInputPoint1()[0];
36                 double y1 = bbGetInputPoint1()[1];
37                 double z1 = bbGetInputPoint1()[2];
38                 double x2 = bbGetInputPoint2()[0];
39                 double y2 = bbGetInputPoint2()[1];
40                 double z2 = bbGetInputPoint2()[2];
41                 double dx = x1-x2;
42                 double dy = y1-y2;
43                 double dz = z1-z2;
44                 double dist = (int) sqrt( dx*dx + dy*dy  + dz*dz );
45
46 printf("EED LineProfile::Process point %f %f %f - %f %f %f\n", x1,y1,z1, x2,y2,z2);
47
48         
49                 int i;
50                 double ii,nx,ny,nz;
51                 for (i=0; i<dist;i++)
52                 {
53                         ii = i/dist;
54                         nx = x1 + dx*ii;                
55                         ny = y1 + dy*ii;                
56                         nz = z1 + dz*ii;
57                         profileLst.push_back( bbGetInputIn()->GetScalarComponentAsDouble(nx,ny,nz,0) );
58 printf("%f ", bbGetInputIn()->GetScalarComponentAsDouble(nx,ny,nz,0) );
59                 } // for i
60         } // if
61         bbSetOutputOut( profileLst );
62 printf("\n");
63 printf("EED LineProfile::Process End\n");
64
65 }
66 //===== 
67 // 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)
68 //===== 
69 void LineProfile::bbUserSetDefaultValues()
70 {
71
72 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
73 //    Here we initialize the input 'In' to 0
74    bbSetInputIn(NULL);
75   
76 }
77 //===== 
78 // 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)
79 //===== 
80 void LineProfile::bbUserInitializeProcessing()
81 {
82
83 //  THE INITIALIZATION METHOD BODY :
84 //    Here does nothing 
85 //    but this is where you should allocate the internal/output pointers 
86 //    if any 
87
88   
89 }
90 //===== 
91 // 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)
92 //===== 
93 void LineProfile::bbUserFinalizeProcessing()
94 {
95
96 //  THE FINALIZATION METHOD BODY :
97 //    Here does nothing 
98 //    but this is where you should desallocate the internal/output pointers 
99 //    if any
100   
101 }
102 }
103 // EO namespace bbcreaVtk
104
105