X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=packages%2Fvtk%2Fsrc%2FbbvtkMaskPoint.h;fp=packages%2Fvtk%2Fsrc%2FbbvtkMaskPoint.h;h=6e0d0944d3249ca1bbd2a34ec7b03526a6eeef1e;hb=427d8c0ac838ab789a57b28f62a7f9ff243e7b60;hp=0000000000000000000000000000000000000000;hpb=c2d2ccbc4bac635e5d0b802d9830efd94b060dab;p=bbtk.git diff --git a/packages/vtk/src/bbvtkMaskPoint.h b/packages/vtk/src/bbvtkMaskPoint.h new file mode 100644 index 0000000..6e0d094 --- /dev/null +++ b/packages/vtk/src/bbvtkMaskPoint.h @@ -0,0 +1,56 @@ +//===== +// 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) +//===== +#ifndef __bbvtkMaskPoint_h_INCLUDED__ +#define __bbvtkMaskPoint_h_INCLUDED__ +#include "bbvtk_EXPORT.h" +#include "bbtkAtomicBlackBox.h" +#include "iostream" + +#include "vtkImageData.h" +#include "vtkMaskPoints.h" +#include "vtkPolyData.h" + + +namespace bbvtk +{ + +class bbvtk_EXPORT MaskPoint + : + public bbtk::AtomicBlackBox +{ + BBTK_BLACK_BOX_INTERFACE(MaskPoint,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) +//===== + BBTK_DECLARE_INPUT(In,vtkImageData*); + BBTK_DECLARE_INPUT(Ratio,int); + BBTK_DECLARE_OUTPUT(Out,vtkPolyData*); + BBTK_PROCESS(Process); + void Process(); + + private: + vtkMaskPoints *maskpoints; + +//===== +// 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) +//===== +}; + +BBTK_BEGIN_DESCRIBE_BLACK_BOX(MaskPoint,bbtk::AtomicBlackBox); +BBTK_NAME("MaskPoint"); +BBTK_AUTHOR("ED at InfoDev Creatis"); +BBTK_DESCRIPTION("vtkMaskPoint"); +BBTK_CATEGORY("empty"); + BBTK_INPUT(MaskPoint,In,"vtkImageData",vtkImageData*,""); + BBTK_INPUT(MaskPoint,Ratio,"Ratio",int,""); + BBTK_OUTPUT(MaskPoint,Out,"vtkPolyData",vtkPolyData*,""); +BBTK_END_DESCRIBE_BLACK_BOX(MaskPoint); +//===== +// 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) +//===== +} +// EO namespace bbvtk + +#endif // __bbvtkMaskPoint_h_INCLUDED__ +