From 3d7dc8f5fc5f6acd6f79f455ef7d068d912653a1 Mon Sep 17 00:00:00 2001 From: Eduardo Davila Date: Mon, 8 Jun 2009 12:38:34 +0000 Subject: [PATCH] . --- .../wxWindows/widgets/manualContour/manualViewBaseContour.cpp | 2 +- .../interface/wxWindows/widgets/manualViewPerpPlaneContour.cxx | 2 +- .../interface/wxWindows/widgets/vtkInfoTextImageInteractor.cxx | 2 +- .../src/interface/wxWindows/widgets/vtkPlane2DView.cxx | 2 +- .../src/interface/wxWindows/widgets/wxVtkBaseView.cxx | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/manualViewBaseContour.cpp b/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/manualViewBaseContour.cpp index e9a8596..7508f65 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/manualViewBaseContour.cpp +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/manualViewBaseContour.cpp @@ -723,7 +723,7 @@ int manualViewBaseContour::GetNumberOfPoints() // virtual void manualViewBaseContour::TransfromeCoordViewWorld(double &X, double &Y, double &Z, int type) // Virtual { - _wxvtkbaseview->TransfromeCoordScreenToWorld(X, Y, Z, type); + _wxvtkbaseview->TransFromeCoordScreenToWorld(X, Y, Z, type); //EED 27 sep 2007 diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualViewPerpPlaneContour.cxx b/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualViewPerpPlaneContour.cxx index 4c07bdf..ca4f013 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualViewPerpPlaneContour.cxx +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualViewPerpPlaneContour.cxx @@ -192,7 +192,7 @@ bool manualViewPerpPlaneContour::ifTouchContour( int x, int y, int z) double X=x; double Y=y; double Z=z; - vtkplane2Dview->TransfromeCoordScreenToWorld(X,Y,Z); + vtkplane2Dview->TransFromeCoordScreenToWorld(X,Y,Z); double ppA[3]; _pts->GetPoint(0, ppA); if (sqrt( (ppA[0]-X)*(ppA[0]-X) + (ppA[1]-Y)*(ppA[1]-Y) ) <=2) diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkInfoTextImageInteractor.cxx b/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkInfoTextImageInteractor.cxx index 809a8bb..98a24eb 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkInfoTextImageInteractor.cxx +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkInfoTextImageInteractor.cxx @@ -40,7 +40,7 @@ bool vtkInfoTextImageInteractor::OnMouseMove() yy=Y; zz=z; - _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->TransfromeCoordScreenToWorld(xx,yy,zz); + _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->TransFromeCoordScreenToWorld(xx,yy,zz); GetVtkInfoTextImage()->PutWindowLevel(); diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkPlane2DView.cxx b/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkPlane2DView.cxx index d41521c..e95ca9d 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkPlane2DView.cxx +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkPlane2DView.cxx @@ -528,7 +528,7 @@ void vtkPlane2DView::TransfromeCoordViewWorld2(double &X, double &Y, double &Z) double yy = Y; double zz = 0; - TransfromeCoordScreenToWorld(xx,yy,zz); + TransFromeCoordScreenToWorld(xx,yy,zz); vtkTransform *transf1 = vtkTransform::New(); diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/wxVtkBaseView.cxx b/lib/maracasVisuLib/src/interface/wxWindows/widgets/wxVtkBaseView.cxx index d7c40b1..a5f79e9 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/wxVtkBaseView.cxx +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/wxVtkBaseView.cxx @@ -91,7 +91,7 @@ vtkRenderWindow* wxVtkBaseView::GetRenWin() // virtual //---------------------------------------------------------------------------- -void wxVtkBaseView::TransfromeCoordScreenToWorld(double &X, double &Y, double &Z, int type) // virtual +void wxVtkBaseView::TransFromeCoordScreenToWorld(double &X, double &Y, double &Z, int type) // virtual { GetRenderer()->SetDisplayPoint((int)X, (int)Y, (int)Z); GetRenderer()->DisplayToWorld(); -- 2.45.1