//===== // 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 __bbcreaVtkClipPolyData_h_INCLUDED__ #define __bbcreaVtkClipPolyData_h_INCLUDED__ #include "bbcreaVtk_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include "iostream" #include "vtkPolyData.h" #include "vtkImplicitFunction.h" namespace bbcreaVtk { class bbcreaVtk_EXPORT ClipPolyData : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(ClipPolyData,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(Type,int); BBTK_DECLARE_INPUT(In,vtkPolyData*); BBTK_DECLARE_INPUT(Inside,bool); BBTK_DECLARE_INPUT(ImplicitFunction,vtkImplicitFunction*); 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(ClipPolyData,bbtk::AtomicBlackBox); BBTK_NAME("ClipPolyData"); BBTK_AUTHOR("InfoDev"); BBTK_DESCRIPTION("No Description."); BBTK_CATEGORY("empty"); BBTK_INPUT(ClipPolyData,Type,"(default 0) 0:surface vtkClipPolydata 1:points vtkExtractPoints",int,""); BBTK_INPUT(ClipPolyData,In,"vtkPolyData",vtkPolyData*,""); BBTK_INPUT(ClipPolyData,Inside,"(defalut true) Inside true, Outside false",bool,""); BBTK_INPUT(ClipPolyData,ImplicitFunction,"vtkImplicitFunction",vtkImplicitFunction*,""); BBTK_OUTPUT(ClipPolyData,Out,"vtkPolyData",vtkPolyData*,""); BBTK_END_DESCRIBE_BLACK_BOX(ClipPolyData); //===== // 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 // __bbcreaVtkClipPolyData_h_INCLUDED__