X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=bbtk%2Fsrc%2FbbmaracasvisuPlotterView.cxx;h=f48e2d26e0b18cad2d3e9eb269b551935b532b24;hb=d79fc05657cfa43ed1cd6937a5acaeaf70e09b45;hp=af7cecc2c73a004e467ead2ee84393bb63bcfb83;hpb=25e3adf442d6a8d357d52410267445c54426c525;p=creaMaracasVisu.git diff --git a/bbtk/src/bbmaracasvisuPlotterView.cxx b/bbtk/src/bbmaracasvisuPlotterView.cxx index af7cecc..f48e2d2 100644 --- a/bbtk/src/bbmaracasvisuPlotterView.cxx +++ b/bbtk/src/bbmaracasvisuPlotterView.cxx @@ -39,127 +39,173 @@ BBTK_BLACK_BOX_IMPLEMENTATION(PlotterView,bbtk::WxBlackBox); //--------------------------------------------------- void PlotterView::Process() { -// if (firsttime==true) -// { -// firsttime=false; - - pGraphicalFunction *pGF = mwxwidget->getFunction(0); - pGraphicalFunction *pGF2 = mwxwidget->getFunction(1); - - if ( (bbGetInputInY().size()!=0) && (bbGetInputInY2().size()==0) ) - { - bbSetInputInY2( bbGetInputInY() ); - } - - if ( (bbGetInputInY().size()!=0) && (pGF==NULL) ) - { - // avoid 'taking address of temporary ' - //pGraphicalFunction *pGF = mwxwidget->getFunctionForVectors( &(bbGetInputInX()), &(bbGetInputInY()) ); // taking address of temporary ! JPRx - - std::vector inX; - if (bbGetInputInX().size()==0) + + double lim=1; + + if (bbGetInputInX().size()==bbGetInputInY().size() ) + { + pGraphicalFunction *pGF = mwxwidget->getFunction(0); + pGraphicalFunction *pGF2 = mwxwidget->getFunction(1); + // EED 2020-01-22 + if (pGF!=NULL) + { + // -Erasing points- + int i,sizePoints = pGF->getSizePoints(); + for (i=1; ideletePointAt(1); // EED here NOT 0 is 1 + #else + pGF->deletePointAt(0); // EED here NOT 0 is 1 + #endif + } // for i + mwxwidget->deleteFunction(pGF); + pGF=NULL; + } + // EED 2020-01-22 + if (pGF2!=NULL) + { + // -Erasing points- + int i,sizePoints = pGF2->getSizePoints(); + for (i=0; ideletePointAt(1); // EED here NOT 0 is 1 + #else + pGF2->deletePointAt(0); // EED here NOT 0 is 1 + #endif + } // for i + mwxwidget->deleteFunction(pGF2); + pGF2=NULL; + } + if ( (bbGetInputInY().size()!=0) && (pGF==NULL) ) { - int i,size=bbGetInputInY().size(); - for(i=0;igetFunctionForVectors( &(bbGetInputInX()), &(bbGetInputInY()) ); // taking address of temporary ! JPRx + std::vector inX; + if (bbGetInputInX().size()==0) { - inX.push_back((double)i); - } // for - } else { - inX = bbGetInputInX(); - } // if bbGetInputInX - std::vector inY = bbGetInputInY(); - - /* - std::vector inX; - std::vector inY; - inX.push_back(0); inX.push_back(200); - inY.push_back(0); inY.push_back(1); - */ - pGF = mwxwidget->getFunctionForVectors( &inX, &inY ); - mwxwidget->addFunction(pGF); - } // if bbGetInputInY - - if ((bbGetInputInY2().size()!=0)&& (pGF2==NULL) ) - { - // avoid 'taking address of temporary ' - //pGraphicalFunction *pGF = mwxwidget->getFunctionForVectors( &(bbGetInputInX()), &(bbGetInputInY()) ); // taking address of temporary ! JPRx - - std::vector inX2; - if (bbGetInputInX().size()==0) + int i,size=bbGetInputInY().size(); + for(i=0;i inY = bbGetInputInY(); + + bool ok=false; + int i, size = inY.size(); + for ( i=0 ; i-lim) && (inY[i]lim)) {ok=true;} + }// for + if (ok==true) + { + pGF = mwxwidget->getFunctionForVectors( &inX, &inY ); + mwxwidget->addFunction(pGF); + } else { + printf("EED Warnning!! PlotterView::Process function y with CEROS ????..... \n"); + } // if ok + + } // if bbGetInputInY + + if ((bbGetInputInY2().size()!=0)&& (pGF2==NULL) ) { - int i,size=bbGetInputInY2().size(); - for(i=0;igetFunctionForVectors( &(bbGetInputInX()), &(bbGetInputInY()) ); // taking address of temporary ! JPRx + std::vector inX2; + if (bbGetInputInX().size()==0) { - inX2.push_back((double)i); - } // for - } else { - inX2 = bbGetInputInX(); - } // if bbGetInputInX - std::vector inY2 = bbGetInputInY(); - /* - std::vector inX2; - std::vector inY2; - inX2.push_back(0); inX2.push_back(200); - inY2.push_back(0); inY2.push_back(1); - */ - pGF2 = mwxwidget->getFunctionForVectors( &inX2, &inY2 ); - mwxwidget->addFunction(pGF2); - } // if bbGetInputInY + int i,size=bbGetInputInY2().size(); + for(i=0;i inY2 = bbGetInputInY2(); + + bool ok2=false; + int i, size = inY2.size(); + for ( i=0 ; i-lim) && (inY2[i]lim)) {ok2=true;} + }// for + if (ok2==true) + { + pGF2 = mwxwidget->getFunctionForVectors( &inX2, &inY2 ); + mwxwidget->addFunction(pGF2); + } else { + printf("EED Warnning!! PlotterView::Process function y2 with CEROS ????..... \n"); + } // if ok2 + + + } // if bbGetInputInY -// } // if firsttime + /* EED 2020-01-22 - - if (pGF!=NULL) - { - // -Erasing points- - int i,sizePoints = pGF->getSizePoints(); - for (i=1; ideletePointAt(1); // EED here NOT 0 is 1 - } // for i - // -Add Points- - double px; - sizePoints=bbGetInputInY().size(); - for (i=0; igetSizePoints(); + for (i=1; iAddNewPoint( px, bbGetInputInY()[i] ); - } - }// if pGF - - if (pGF2!=NULL) - { - // -Erasing points- - int i,sizePoints = pGF2->getSizePoints(); - for (i=0; ideletePointAt(1); // EED here NOT 0 is 1 -#else - pGF2->deletePointAt(0); // EED here NOT 0 is 1 -#endif - } // for i - // -Add Points- - double px; - sizePoints=bbGetInputInY2().size(); - for (i=0; ideletePointAt(1); // EED here NOT 0 is 1 + } // for i + // -Add Points- + double px; + sizePoints=bbGetInputInY().size(); + for (i=0; iAddNewPoint( px, bbGetInputInY()[i] ); + } + }// if pGF + + if (pGF2!=NULL) { - if (igetSizePoints(); + for (i=0; ideletePointAt(1); // EED here NOT 0 is 1 + #else + pGF2->deletePointAt(0); // EED here NOT 0 is 1 + #endif + } // for i + // -Add Points- + double px; + sizePoints=bbGetInputInY2().size(); + for (i=0; iAddNewPoint( px, bbGetInputInY2()[i] ); - } // for - }// if pGF - mwxwidget->UpdateAll(); + if (iAddNewPoint( px, bbGetInputInY2()[i] ); + } // for + }// if pGF + */ + mwxwidget->UpdateAll(); + } else { + printf("EED Warnning... PlotterView::Process() Size of vecto X and Y is not coherent.\n"); + } // InX.size InY.size } @@ -180,7 +226,6 @@ void PlotterView::CreateWidget(wxWindow* parent) void PlotterView::bbUserSetDefaultValues() { mwxwidget = NULL; - firsttime=true; } //-----------------------------------------------------------------