]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/src/bbcreaVtkImageDataStructuredPoints.cxx
b8e8f8eae97e0f31c2764c15316c3bc6c578d373
[creaVtk.git] / bbtk_creaVtk_PKG / src / bbcreaVtkImageDataStructuredPoints.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 "bbcreaVtkImageDataStructuredPoints.h"
5 #include "bbcreaVtkPackage.h"
6 namespace bbcreaVtk
7 {
8
9 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaVtk,ImageDataStructuredPoints)
10 BBTK_BLACK_BOX_IMPLEMENTATION(ImageDataStructuredPoints,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 ImageDataStructuredPoints::Process()
15 {
16                 vtkImageDataStrucPoints idsp;
17                 idsp.joinComponents(bbGetInputX(),              bbGetInputY(),          bbGetInputZ(),
18                                                         bbGetInputData1(),      bbGetInputData2(),      bbGetInputData3(),
19                                                         bbGetInputData4(),      bbGetInputData5(),      bbGetInputData6()        );
20                 bbSetOutputImageEnsemble( idsp.getStructuredPoints() );
21 }
22 //===== 
23 // 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)
24 //===== 
25 void ImageDataStructuredPoints::bbUserSetDefaultValues()
26 {
27   bbSetInputX(NULL);
28   bbSetInputY(NULL);
29   bbSetInputZ(NULL);
30   bbSetInputData1(NULL);
31   bbSetInputData2(NULL);
32   bbSetInputData3(NULL);
33   bbSetInputData4(NULL);
34   bbSetInputData5(NULL);
35   bbSetInputData6(NULL);
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 ImageDataStructuredPoints::bbUserInitializeProcessing()
41 {
42   
43 }
44 //===== 
45 // 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)
46 //===== 
47 void ImageDataStructuredPoints::bbUserFinalizeProcessing()
48 {
49
50 }
51 }
52 // EO namespace bbcreaVtk
53
54