]> Creatis software - creaMaracasVisu.git/blob - bbtk/src/bbcreaMaracasVisuManualContourModel_Box.h
4a97fe1cb21d2d762af65f79bcbbe54c8f050bab
[creaMaracasVisu.git] / bbtk / src / bbcreaMaracasVisuManualContourModel_Box.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 __bbcreaMaracasVisuManualContourModel_Box_h_INCLUDED__
5 #define __bbcreaMaracasVisuManualContourModel_Box_h_INCLUDED__
6 #include "bbcreaMaracasVisu_EXPORT.h"
7 #include "bbtkAtomicBlackBox.h"
8 #include "iostream"
9
10 namespace bbcreaMaracasVisu
11 {
12
13 class bbcreaMaracasVisu_EXPORT ManualContourModel_Box
14  : 
15    public bbtk::AtomicBlackBox
16 {
17   BBTK_BLACK_BOX_INTERFACE(ManualContourModel_Box,bbtk::AtomicBlackBox);
18 //===== 
19 // 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)
20 //===== 
21   BBTK_DECLARE_INPUT(Type,int);
22   BBTK_DECLARE_INPUT(OpenClose,bool);
23   BBTK_DECLARE_INPUT(NbPoints,int);
24
25   BBTK_DECLARE_INPUT(LstIndexsIn,std::vector<int>);
26
27   BBTK_DECLARE_INPUT(LstControlPointsX,std::vector<double>);
28   BBTK_DECLARE_INPUT(LstControlPointsY,std::vector<double>);
29   BBTK_DECLARE_INPUT(LstControlPointsZ,std::vector<double>);
30
31   BBTK_DECLARE_OUTPUT(LstContourPointsX,std::vector<double>);
32   BBTK_DECLARE_OUTPUT(LstContourPointsY,std::vector<double>);
33   BBTK_DECLARE_OUTPUT(LstContourPointsZ,std::vector<double>);
34   BBTK_DECLARE_OUTPUT(LstIndexsOut,std::vector<int>);
35   BBTK_PROCESS(Process);
36   void Process();
37
38
39 void ShiftValues(       std::vector<double> *lstInX,
40                                         std::vector<double> *lstInY, 
41                                         std::vector<double> *lstOuZ,
42                                         std::vector<int> *lstIndexsIn );
43
44
45   void ProcessBySegment(        
46                         int Type, 
47                         int &iGeneral, int sizeSegment,
48                         std::vector<double> *lstInX,std::vector<double> *lstInY, std::vector<double> *lstInZ,
49                         std::vector<double> *lstOutX,std::vector<double> *lstOutY, std::vector<double> *lstOutZ,
50                         std::vector<int>        *lstIndexsOut,
51                         bool open );
52
53 void RedistributionPoints(      std::vector<double> *lstOutX,
54                                                         std::vector<double> *lstOutY, 
55                                                         std::vector<double> *lstOutZ, 
56                                                         std::vector<int> *lstIndexsOut );
57
58
59
60 //===== 
61 // 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)
62 //===== 
63 };
64
65 BBTK_BEGIN_DESCRIBE_BLACK_BOX(ManualContourModel_Box,bbtk::AtomicBlackBox);
66   BBTK_NAME("ManualContourModel_Box");
67   BBTK_AUTHOR("InfoDev");
68   BBTK_DESCRIPTION("No Description.");
69   BBTK_CATEGORY("empty");
70
71   BBTK_INPUT(ManualContourModel_Box,Type,"(1 default) 1=spline, 2=rectangle, 3=circle, 4=bullEye, 6=Line, 7=points, 8=rotationTool, 10=polygon, 12=Spline3D",int,"");
72   BBTK_INPUT(ManualContourModel_Box,OpenClose,"(false default) false=open, true=close",bool,"");
73   BBTK_INPUT(ManualContourModel_Box,NbPoints,"(100 default) Number of points int the spline",int,"");
74   BBTK_INPUT(ManualContourModel_Box,LstIndexsIn,"Lst number of points by segment",std::vector<int>,"");
75
76   BBTK_INPUT(ManualContourModel_Box,LstControlPointsX,"List of control points",std::vector<double>,"");
77   BBTK_INPUT(ManualContourModel_Box,LstControlPointsY,"List of control points",std::vector<double>,"");
78   BBTK_INPUT(ManualContourModel_Box,LstControlPointsZ,"List of control points",std::vector<double>,"");
79
80   BBTK_OUTPUT(ManualContourModel_Box,LstContourPointsX,"List of points in the contour",std::vector<double>,"");
81   BBTK_OUTPUT(ManualContourModel_Box,LstContourPointsY,"List of points in the contour",std::vector<double>,"");
82   BBTK_OUTPUT(ManualContourModel_Box,LstContourPointsZ,"List of points in the contour",std::vector<double>,"");
83   BBTK_OUTPUT(ManualContourModel_Box,LstIndexsOut,"Lst number of points by segment",std::vector<int>,"");
84
85 BBTK_END_DESCRIBE_BLACK_BOX(ManualContourModel_Box);
86 //===== 
87 // 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)
88 //===== 
89 }
90 // EO namespace bbcreaMaracasVisu
91
92 #endif // __bbcreaMaracasVisuManualContourModel_Box_h_INCLUDED__
93
94
95
96
97