//===== // 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 __bbcreaVtkVectorsVisu_h_INCLUDED__ #define __bbcreaVtkVectorsVisu_h_INCLUDED__ #include "bbcreaVtk_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include "iostream" #include "vtkRenderer.h" #include "vtkDataObject.h" #include "vtkVectorsVisu.h" namespace bbcreaVtk { class bbcreaVtk_EXPORT VectorsVisu : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(VectorsVisu,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,vtkDataObject*); BBTK_DECLARE_INPUT(Renderer,vtkRenderer*); BBTK_DECLARE_INPUT(ScaleFactor,double); BBTK_DECLARE_INPUT(Opacity,double); BBTK_DECLARE_INPUT(TypeForm,int); BBTK_DECLARE_OUTPUT(Out,vtkProp3D*); BBTK_PROCESS(Process); void Process(); private: vtkVectorsVisu vectorsvisu; //===== // 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(VectorsVisu,bbtk::AtomicBlackBox); BBTK_NAME("VectorsVisu"); BBTK_AUTHOR("ED at InfoDev Creatis"); BBTK_DESCRIPTION("No Description."); BBTK_CATEGORY("empty"); BBTK_INPUT(VectorsVisu,Active,"Active (false default)",bool,""); BBTK_INPUT(VectorsVisu,In,"(needed) vtkDataObject. (Example vtkDataObject<-vtkDataSet<-vtkPointSet<-vtkPolyData (parrent class) )",vtkDataObject*,""); BBTK_INPUT(VectorsVisu,ScaleFactor,"Scale factor (500 default)",double,""); BBTK_INPUT(VectorsVisu,Opacity,"Opacity (1 default)",double,""); BBTK_INPUT(VectorsVisu,Renderer,"vtkRenderer",vtkRenderer*,""); BBTK_INPUT(VectorsVisu,TypeForm,"0 Line, 1 Arrow (default 0)",int,""); BBTK_OUTPUT(VectorsVisu,Out,"vtkProp3D of an vtkActor",vtkProp3D*,""); BBTK_END_DESCRIBE_BLACK_BOX(VectorsVisu); //===== // 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 // __bbcreaVtkVectorsVisu_h_INCLUDED__