]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/manualViewRoi.cpp
Feature #1606 Add a new entry to ColorLayerImageView to select the fitting mode betwe...
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / manualContour / manualViewRoi.cpp
index d86be6c05d0b8ec4318a8300a933877b92468151..570a372267537323075d52b518befe10a4e5e1c6 100644 (file)
@@ -134,7 +134,7 @@ bool manualViewRoi::ifTouchContour(int x,int y, int z) // virtual
        double xx=x;
        double yy=y;
        double zz=z;
-       TransfromeCoordViewWorld(xx,yy,zz);
+       TransfromCoordViewWorld(xx,yy,zz);
 
        bool ok1=false;
        bool ok2=false;
@@ -167,7 +167,7 @@ void manualViewRoi::InitMove(int x, int y, int z)  // virtual
        double XX=x;
        double YY=y;
        double ZZ=z;
-       TransfromeCoordViewWorld(XX,YY,ZZ);
+       TransfromCoordViewWorld(XX,YY,ZZ);
 
        if (_manContModel->GetSizeLstPoints()==4){
                mp = _manContModel->GetManualPoint(0);
@@ -200,7 +200,7 @@ void manualViewRoi::MoveContour(int x, int y, int z) // virtual
        double XX=x;
        double YY=y;
        double ZZ=z;
-       TransfromeCoordViewWorld(XX,YY,ZZ);
+       TransfromCoordViewWorld(XX,YY,ZZ);
 
        mp = _manContModel->GetManualPoint(0);
        mp->SetPoint(_dp0[0]+XX,_dp0[1]+YY,_dp0[2]);