//===== // 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 __bbcreaVtkMarchingCubes2_h_INCLUDED__ #define __bbcreaVtkMarchingCubes2_h_INCLUDED__ #include "bbcreaVtk_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include "iostream" #include #include #include namespace bbcreaVtk { class bbcreaVtk_EXPORT MarchingCubes2 : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(MarchingCubes2,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(Active,bool); BBTK_DECLARE_INPUT(In,vtkImageData*); BBTK_DECLARE_INPUT(Value,double); BBTK_DECLARE_INPUT(ComputeNormalsOn,bool); BBTK_DECLARE_INPUT(ComputeScalarsOn,bool); BBTK_DECLARE_OUTPUT(Out,vtkPolyData*); BBTK_PROCESS(Process); void Process(); vtkMarchingCubes *marchingcubes; //===== // 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(MarchingCubes2,bbtk::AtomicBlackBox); BBTK_NAME("MarchingCubes2"); BBTK_AUTHOR("InfoDev"); BBTK_DESCRIPTION("No Description. (JavaScript)"); BBTK_CATEGORY("empty"); BBTK_INPUT(MarchingCubes2,Active,"(default true) Active",bool,""); BBTK_INPUT(MarchingCubes2,In,"Input image",vtkImageData*,""); BBTK_INPUT(MarchingCubes2,Value,"Value of the iso-surface",double,""); BBTK_INPUT(MarchingCubes2,ComputeNormalsOn,"Set the computation of normals",bool,""); BBTK_INPUT(MarchingCubes2,ComputeScalarsOn,"Set the computation of scalars",bool,""); BBTK_OUTPUT(MarchingCubes2,Out,"Output polydata (iso-surface)",vtkPolyData*,""); BBTK_END_DESCRIBE_BLACK_BOX(MarchingCubes2); //===== // 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 // __bbcreaVtkMarchingCubes2_h_INCLUDED__