//===== // 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 __bbvtkPlaneClipPolyData_h_INCLUDED__ #define __bbvtkPlaneClipPolyData_h_INCLUDED__ #include "bbvtk_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include "iostream" #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace bbvtk { class bbvtk_EXPORT PlaneClipPolyData : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(PlaneClipPolyData,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(PlaneOrigin,std::vector); BBTK_DECLARE_INPUT(PlaneNormal,std::vector); BBTK_DECLARE_INPUT(PolyData,vtkPolyData*); BBTK_DECLARE_OUTPUT(ClippedPolyData,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(PlaneClipPolyData,bbtk::AtomicBlackBox); BBTK_NAME("PlaneClipPolyData"); BBTK_AUTHOR("Ricardo A Corredor"); BBTK_DESCRIPTION("Clips a polydata with a plane determined by the origin and normal given"); BBTK_CATEGORY(""); BBTK_INPUT(PlaneClipPolyData,PlaneOrigin,"Cutting plane origin",std::vector,""); BBTK_INPUT(PlaneClipPolyData,PlaneNormal,"Cutting plane normal",std::vector,""); BBTK_INPUT(PlaneClipPolyData,PolyData,"PolyData to be clipped",vtkPolyData*,""); BBTK_OUTPUT(PlaneClipPolyData,ClippedPolyData,"New PolyData clipped",vtkPolyData*,""); BBTK_END_DESCRIBE_BLACK_BOX(PlaneClipPolyData); //===== // 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 // __bbvtkPlaneClipPolyData_h_INCLUDED__