//===== // 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 __bbcreaVtkDelaunay3D_h_INCLUDED__ #define __bbcreaVtkDelaunay3D_h_INCLUDED__ #include "bbcreaVtk_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include "iostream" #include "vtkPolyData.h" namespace bbcreaVtk { class bbcreaVtk_EXPORT Delaunay3D : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(Delaunay3D,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(Tolerance,double); BBTK_DECLARE_INPUT(Alpha,double); BBTK_DECLARE_INPUT(LstPointsX,std::vector); BBTK_DECLARE_INPUT(LstPointsY,std::vector); BBTK_DECLARE_INPUT(LstPointsZ,std::vector); BBTK_DECLARE_OUTPUT(Out,vtkPolyData *); BBTK_PROCESS(Process); void Process(); //===== // 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(Delaunay3D,bbtk::AtomicBlackBox); BBTK_NAME("Delaunay3D"); BBTK_AUTHOR("InfoDev"); BBTK_DESCRIPTION("No Description."); BBTK_CATEGORY("empty"); BBTK_INPUT(Delaunay3D,Tolerance,"(default 0) Delaunay Tolerance",double,""); BBTK_INPUT(Delaunay3D,Alpha,"(default 0) Delaunay Alpha",double,""); BBTK_INPUT(Delaunay3D,LstPointsX,"Vector of points X",std::vector,""); BBTK_INPUT(Delaunay3D,LstPointsY,"Vector of points Y",std::vector,""); BBTK_INPUT(Delaunay3D,LstPointsZ,"Vector of points Z",std::vector,""); BBTK_OUTPUT(Delaunay3D,Out,"vtkPolyData",vtkPolyData*,""); BBTK_END_DESCRIBE_BLACK_BOX(Delaunay3D); //===== // 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 bbcreaVtk #endif // __bbcreaVtkDelaunay3D_h_INCLUDED__