//===== // 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) //===== #include "bbcreaVtkImageDataStructuredPoints.h" #include "bbcreaVtkPackage.h" namespace bbcreaVtk { BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaVtk,ImageDataStructuredPoints) BBTK_BLACK_BOX_IMPLEMENTATION(ImageDataStructuredPoints,bbtk::AtomicBlackBox); //===== // 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) //===== void ImageDataStructuredPoints::Process() { vtkImageDataStrucPoints idsp; idsp.joinComponents(bbGetInputX(), bbGetInputY(), bbGetInputZ(), bbGetInputData1(), bbGetInputData2(), bbGetInputData3(), bbGetInputData4(), bbGetInputData5(), bbGetInputData6() ); bbSetOutputImageEnsemble( idsp.getStructuredPoints() ); } //===== // 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) //===== void ImageDataStructuredPoints::bbUserSetDefaultValues() { bbSetInputX(NULL); bbSetInputY(NULL); bbSetInputZ(NULL); bbSetInputData1(NULL); bbSetInputData2(NULL); bbSetInputData3(NULL); bbSetInputData4(NULL); bbSetInputData5(NULL); bbSetInputData6(NULL); } //===== // 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) //===== void ImageDataStructuredPoints::bbUserInitializeProcessing() { } //===== // 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) //===== void ImageDataStructuredPoints::bbUserFinalizeProcessing() { } } // EO namespace bbcreaVtk