]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/src/bbcreaVtkPlane.h
#3491 vtk9itk5wx3-macos
[creaVtk.git] / bbtk_creaVtk_PKG / src / bbcreaVtkPlane.h
1 //===== 
2 // 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)
3 //===== 
4 #ifndef __bbcreaVtkPlane_h_INCLUDED__
5 #define __bbcreaVtkPlane_h_INCLUDED__
6
7 #include "bbcreaVtk_EXPORT.h"
8 #include "bbtkAtomicBlackBox.h"
9 #include "iostream"
10 #include "vtkImplicitFunction.h"
11
12 namespace bbcreaVtk
13 {
14
15 class bbcreaVtk_EXPORT Plane
16  : 
17    public bbtk::AtomicBlackBox
18 {
19   BBTK_BLACK_BOX_INTERFACE(Plane,bbtk::AtomicBlackBox);
20 //===== 
21 // 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)
22 //===== 
23   BBTK_DECLARE_INPUT(Origin,std::vector<double>);
24   BBTK_DECLARE_INPUT(Normal,std::vector<double>);
25   BBTK_DECLARE_OUTPUT(Out,vtkImplicitFunction*);
26   BBTK_PROCESS(Process);
27   void Process();
28 //===== 
29 // 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)
30 //===== 
31 };
32
33 BBTK_BEGIN_DESCRIBE_BLACK_BOX(Plane,bbtk::AtomicBlackBox);
34   BBTK_NAME("Plane");
35   BBTK_AUTHOR("InfoDev");
36   BBTK_DESCRIPTION("Implicite Function of VTK");
37   BBTK_CATEGORY("empty");
38
39   BBTK_INPUT(Plane,Origin,"(default [0,0,0])  point  [x,y,z]",std::vector<double>,"");
40   BBTK_INPUT(Plane,Normal,"(default [0,0,1]) vector [x,y,z]",std::vector<double>,"");
41
42   BBTK_OUTPUT(Plane,Out,"vtkImplicitFuntion",vtkImplicitFunction*,"");
43
44 BBTK_END_DESCRIBE_BLACK_BOX(Plane);
45 //===== 
46 // 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)
47 //===== 
48 }
49 // EO namespace bbcreaVtk
50
51 #endif // __bbcreaVtkPlane_h_INCLUDED__
52