From 8ff1bd01f3b914e504bf3260fdcc79d026dfac68 Mon Sep 17 00:00:00 2001 From: Eduardo DAVILA Date: Thu, 4 Jul 2019 09:29:48 +0200 Subject: [PATCH] #3266 creaMaracasVisu Feature New Normal - ManualContour_Box by segments --- ...bcreaMaracasVisuManualContourModel_Box.cxx | 161 ++++++++---------- .../bbcreaMaracasVisuManualContourModel_Box.h | 5 + 2 files changed, 80 insertions(+), 86 deletions(-) diff --git a/bbtk/src/bbcreaMaracasVisuManualContourModel_Box.cxx b/bbtk/src/bbcreaMaracasVisuManualContourModel_Box.cxx index 1aa1c53..eee2c19 100644 --- a/bbtk/src/bbcreaMaracasVisuManualContourModel_Box.cxx +++ b/bbtk/src/bbcreaMaracasVisuManualContourModel_Box.cxx @@ -263,8 +263,11 @@ void ManualContourModel_Box::Process() lstIndexsIn.push_back( lstInX.size() ); } - ShiftValues( &lstInX , &lstInY , &lstInZ , &lstIndexsIn ); - + + if (bbGetInputDoubleContour()==1) + { + ShiftValues( &lstInX , &lstInY , &lstInZ , &lstIndexsIn ); + } // DoubleContour int i,size=lstIndexsIn.size(); int iGeneral=0; @@ -277,93 +280,77 @@ void ManualContourModel_Box::Process() &lstIndexsOut,bbGetInputOpenClose() ); } // for - RedistributionPoints(&lstOutX,&lstOutY,&lstOutZ,&lstIndexsOut); - - - - // Second Step Transpose the vectors - lstInX.clear(); - lstInY.clear(); - lstInZ.clear(); - lstIndexsIn.clear(); - size = bbGetInputNbPoints(); - int j,size2 = lstIndexsOut.size(); - for (i=0;i); @@ -28,6 +30,7 @@ class bbcreaMaracasVisu_EXPORT ManualContourModel_Box BBTK_DECLARE_INPUT(LstControlPointsY,std::vector); BBTK_DECLARE_INPUT(LstControlPointsZ,std::vector); + BBTK_DECLARE_OUTPUT(LstContourPointsX,std::vector); BBTK_DECLARE_OUTPUT(LstContourPointsY,std::vector); BBTK_DECLARE_OUTPUT(LstContourPointsZ,std::vector); @@ -69,7 +72,9 @@ BBTK_BEGIN_DESCRIBE_BLACK_BOX(ManualContourModel_Box,bbtk::AtomicBlackBox); BBTK_CATEGORY("empty"); 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,""); + BBTK_INPUT(ManualContourModel_Box,DoubleContour,"(0 default) 0=Simple, 1=Double (This is used to construct surface, use LstIndexesIn)",int,""); BBTK_INPUT(ManualContourModel_Box,OpenClose,"(false default) false=open, true=close",bool,""); + BBTK_INPUT(ManualContourModel_Box,OpenClose2,"(false default) false=open, true=close. Used with the DoubleContour option.",bool,""); BBTK_INPUT(ManualContourModel_Box,NbPoints,"(100 default) Number of points int the spline",int,""); BBTK_INPUT(ManualContourModel_Box,LstIndexsIn,"Lst number of points by segment",std::vector,""); -- 2.49.0