diff --git a/src/IVtkTools/IVtkTools_ShapePicker.cxx b/src/IVtkTools/IVtkTools_ShapePicker.cxx index ffdf1ee630..2a0dd63558 100644 --- a/src/IVtkTools/IVtkTools_ShapePicker.cxx +++ b/src/IVtkTools/IVtkTools_ShapePicker.cxx @@ -73,15 +73,15 @@ float IVtkTools_ShapePicker::GetTolerance( ) const // Method: convertDisplayToWorld // Purpose: Convert display coordinates to world coordinates //============================================================================ -bool IVtkTools_ShapePicker::convertDisplayToWorld (vtkRenderer *theRenderer, - vtkFloatingPointType theDisplayCoord[3], - vtkFloatingPointType theWorldCoord[3]) +bool IVtkTools_ShapePicker::convertDisplayToWorld (vtkRenderer *theRenderer, + double theDisplayCoord[3], + double theWorldCoord[3]) { // Convert the selection point into world coordinates. theRenderer->SetDisplayPoint (theDisplayCoord[0], theDisplayCoord[1], theDisplayCoord[2]); theRenderer->DisplayToWorld(); - vtkFloatingPointType* const aCoords = theRenderer->GetWorldPoint(); + double* const aCoords = theRenderer->GetWorldPoint(); if (aCoords[3] == 0.0) { return false; diff --git a/src/IVtkTools/IVtkTools_ShapePicker.hxx b/src/IVtkTools/IVtkTools_ShapePicker.hxx index 282212d196..9c181a5c47 100644 --- a/src/IVtkTools/IVtkTools_ShapePicker.hxx +++ b/src/IVtkTools/IVtkTools_ShapePicker.hxx @@ -124,8 +124,8 @@ protected: //! Convert display coordinates to world coordinates static bool convertDisplayToWorld (vtkRenderer *theRenderer, - vtkFloatingPointType theDisplayCoord[3], - vtkFloatingPointType theWorldCoord[3] ); + double theDisplayCoord[3], + double theWorldCoord[3] ); private: // not copyable IVtkTools_ShapePicker (const IVtkTools_ShapePicker&); diff --git a/src/IVtkVTK/IVtkVTK_View.cxx b/src/IVtkVTK/IVtkVTK_View.cxx index dfd3cb7b15..15a0d31c1b 100644 --- a/src/IVtkVTK/IVtkVTK_View.cxx +++ b/src/IVtkVTK/IVtkVTK_View.cxx @@ -151,7 +151,7 @@ bool IVtkVTK_View::DisplayToWorld (const gp_XY& theDisplayPnt, gp_XYZ& theWorldP myRenderer->SetDisplayPoint (theDisplayPnt.X(), theDisplayPnt.Y(), 0.0); myRenderer->DisplayToWorld(); - vtkFloatingPointType* const aCoords = myRenderer->GetWorldPoint(); + double* const aCoords = myRenderer->GetWorldPoint(); if (aCoords[3] == 0.0) // Point at infinity in homogeneous coordinates { return false;