]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/manualViewContour.cpp
Bug #1679
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / manualContour / manualViewContour.cpp
index 3a42953780d0d587a8bc5700e20fd53914b3fc60..636641c78ffe096da1eabe20925661bb61d06bbe 100644 (file)
@@ -78,6 +78,8 @@ void manualViewContour::RefreshContour() // virtual
     nps = _manContModel->GetNumberOfPointsSpline();
        //delta=( double ) ( np  ) / ( double ) ( nps-1  );             //JSTG 25-02-08
 
+       //EED 27 Juin 2012
+    //Boundaring box   
        _minX=99999;
        _minY=99999;
        _maxX=-99999;
@@ -101,7 +103,8 @@ void manualViewContour::RefreshContour() // virtual
                                zz=z*_spc[2];
                                _pts->SetPoint(i,xx,yy,zz );
 
-//EED 27 Juin 2012
+                //EED 27 Juin 2012
+                               //Boundaring box
                                if (xx < _minX) { _minX = xx; }
                                if (yy < _minY) { _minY = yy; }
                                if (xx > _maxX) { _maxX = xx; }
@@ -210,7 +213,7 @@ bool manualViewContour::ifTouchContour(int x,int y,int z)
        yy = yy * _spc[1];
        zz = zz * _spc[2];
 
-       if ( (xx>=_minX) &&  (yy>=_minY) && (xx<=_maxX) && (yy<=_maxY)) {
+       if ( (xx>=_minX) &&  (yy>=_minY) && (xx<=_maxX) && (yy<=_maxY)) {  // inside the boundaring box
        
                unsigned int i, nps,nps_t;
                nps       = _sizePointsContour;
@@ -222,11 +225,10 @@ bool manualViewContour::ifTouchContour(int x,int y,int z)
                nps_t = nps-1;
                } // if close
 
-               printf("EED  manualViewContour::ifTouchContour \n");
+printf("EED  Warning manualViewContour::ifTouchContour \n");
 
                for( i = 0; i < nps_t; i++ ) 
                {
-printf("%d ", i);
                        _pts->GetPoint(i%nps, ppA);
                        _pts->GetPoint((i+1)%nps, ppB);
                        d1 = sqrt( (ppA[0]-xx)*(ppA[0]-xx) + (ppA[1]-yy)*(ppA[1]-yy) + (ppA[2]-zz)*(ppA[2]-zz));