Salome HOME
Porting to VTK 6.
[modules/visu.git] / src / CONVERTOR / VISU_MergeFilterUtilities.cxx
index 3036520669bc3afb88a2b89480923194300517bd..15c036c720db9f2ff983f7b08d18a39438d67e56 100644 (file)
@@ -328,12 +328,12 @@ namespace
         if(anIter != aGeomObjectId2TupleIdMap.end()){
           // If the point exists in the geometry put it to output
           int aGeometryPointId = anIter->second;
-          vtkFloatingPointType aCoords[3];
+          double aCoords[3];
           anGeometryPoints->GetPoint(aGeometryPointId, aCoords);
           anOutputPoints->SetPoint(aPointId, aCoords);
         }else{
           // If no, the point from data should be used
-          vtkFloatingPointType aCoords[3];
+          double aCoords[3];
           aDataPoints->GetPoint(aPointId, aCoords);
           anOutputPoints->SetPoint(aPointId, aCoords);
         }