X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2Finterface%2FwxWindows%2Fwidgets%2FpPlotter%2FpGraphicalFunction.cxx;h=5e3ce6310b642ff57065b254ad69d7258ed89761;hb=24937478048aca664712bb708240bff79879e0d9;hp=81f843b8c0aa699630f202d305a04bbe91293ee8;hpb=c5feadbb145eecf6d73f793535b7e23eb18db2cb;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/pPlotter/pGraphicalFunction.cxx b/lib/maracasVisuLib/src/interface/wxWindows/widgets/pPlotter/pGraphicalFunction.cxx index 81f843b..5e3ce63 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/pPlotter/pGraphicalFunction.cxx +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/pPlotter/pGraphicalFunction.cxx @@ -48,6 +48,7 @@ pGraphicalFunction:: pGraphicalFunction(wxString name, int flags) offsetPixelY=0; xTraslation=0; mType=DEFAULT; + } /** @@ -159,15 +160,17 @@ bool pGraphicalFunction:: AddNewPoint(int x,int y) */ bool pGraphicalFunction::AddPoint(int aX, int aY,bool order) { - - bool added=logicFunction -> AddPoint( aX, aY,order ); - if(!fromWindow) - setUp(); - else - { - logicFunction->setEndPoints(); - logicFunction->setStartPoints(); - } + bool added=false; + if (logicFunction!=NULL){ + added=logicFunction -> AddPoint( aX, aY,order ); + if(!fromWindow) + setUp(); + else + { + logicFunction->setEndPoints(); + logicFunction->setStartPoints(); + } // if fromWindow + } // if logicFunction return added; } @@ -229,6 +232,7 @@ bool pGraphicalFunction::hasPoint(wxPoint aPoint) { return logicFunction -> hasPoint( aPoint ); } +*/ /** * Returns the real x values of the control points of the function. It dont includes the points calculated by interpolation. @@ -282,6 +286,7 @@ wxNode* pGraphicalFunction:: getBefore(pFunctionPoint* point) int minDiference=10000000; wxNode* node=logicFunction->GetPointAt(0); wxNode* before=NULL; + while(node) { pFunctionPoint* before1=(pFunctionPoint*)node->GetData(); @@ -392,7 +397,7 @@ double pGraphicalFunction::interpolateY(double m, int x1,int y1,int x) //realPoints.DeleteC np = logicFunction->getSizePoints(); - nps = 100; + nps = 200; delta=( double ) ( np ) / ( double ) ( nps ); for( i = 0; i < nps; i++ ) { @@ -536,8 +541,8 @@ void pGraphicalFunction::zooming(int clickedX,int clickedY,int width) wxNode* node=logicFunction->GetPointAt(0); pFunctionPoint* p; - float middleWX=(((float)(screenX-100))/2)/scaleX; - float middleWY=(((float)(screenY-50))/2)/scaleY; + //float middleWX=(((float)(screenX-100))/2)/scaleX; // JPRx + //float middleWY=(((float)(screenY-50))/2)/scaleY; // JPRx //node=node->GetNext(); while(node) @@ -821,7 +826,7 @@ void pGraphicalFunction :: setColorPoints(std::vector &colorVecto { f_colorPoints.clear(); int i = 0; - while(i &colorVecto void pGraphicalFunction :: getColorPoints(std::vector &colorVector) { int i = 0; - while(igetRealX(), originaslPoint->getColor(), originaslPoint->isTemporalColor());