Salome HOME
Exlude the user input during process events by application (Bug #325).
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_VTKPrsBathymetry.cxx
index b02bd0e2fc9f604be416e24d73d82a6857036977..97d0d6c1237256fa0bffe31157b63819054ada1e 100644 (file)
@@ -99,8 +99,8 @@ void HYDROGUI_VTKPrsBathymetry::compute()
         {
           aZ = Z_MAX; // If Z value is invalid then use Z_MAX
         }
-        aPoints->InsertPoint( i, anAltPnt.X(), anAltPnt.Y(), aZ );
-        aVertex->GetPointIds()->SetId( 0, i );
+        aPoints->InsertPoint( i - 1, anAltPnt.X(), anAltPnt.Y(), aZ );
+        aVertex->GetPointIds()->SetId( 0, i - 1 );
         aVertexGrid->InsertNextCell( aVertex->GetCellType(), aVertex->GetPointIds());
         aZValues->InsertNextValue( aZ );
       }