]> SALOME platform Git repositories - modules/hydro.git/commitdiff
Salome HOME
Minor change for vertices ids.
authoradv <adv@opencascade.com>
Mon, 30 Dec 2013 05:52:21 +0000 (05:52 +0000)
committeradv <adv@opencascade.com>
Mon, 30 Dec 2013 05:52:21 +0000 (05:52 +0000)
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 );
       }