Skip to content
Snippets Groups Projects
Commit accb08ad authored by Oliver Sander's avatar Oliver Sander
Browse files

adapted to changes in UGGrid methods

[[Imported from SVN: r4191]]
parent 715ae920
No related branches found
No related tags found
No related merge requests found
......@@ -93,7 +93,7 @@ void Dune::AmiraMeshReader<Dune::UGGrid<3,3> >::createDomain(UGGrid<3,3>& grid,
// Gets the vertices of a boundary segment
AmiraGetNodeNumbersOfSegment(point, i);
std::vector<int> vertices(3);
std::vector<unsigned int> vertices(3);
vertices[0] = point[0];
vertices[1] = point[1];
vertices[2] = point[2];
......@@ -122,7 +122,7 @@ void Dune::AmiraMeshReader<Dune::UGGrid<3,3> >::read(Dune::UGGrid<3,3>& grid,
dverb << "This is the AmiraMesh reader for UGGrid<3,3>!" << std::endl;
// Officially start grid creation
grid.createbegin();
grid.createBegin();
// /////////////////////////////////////////////////////
// Load the AmiraMesh file
......@@ -157,7 +157,7 @@ void Dune::AmiraMeshReader<Dune::UGGrid<3,3> >::read(Dune::UGGrid<3,3>& grid,
dverb << "This is the AmiraMesh reader for UGGrid<3,3>!" << std::endl;
// Officially start grid creation
grid.createbegin();
grid.createBegin();
// /////////////////////////////////////////////////////
// Load the AmiraMesh file
......@@ -335,7 +335,7 @@ void Dune::AmiraMeshReader<Dune::UGGrid<3,3> >::buildGrid(UGGrid<3,3>& grid,
std::cout << "AmiraMesh reader: " << noOfCreatedElem << " elements created.\n";
delete am;
grid.createend();
grid.createEnd();
}
......@@ -355,7 +355,7 @@ void Dune::AmiraMeshReader<Dune::UGGrid<2,2> >::read(Dune::UGGrid<2,2>& grid,
dverb << "Loading 2D Amira mesh " << filename << std::endl;
// Officially start grid creation
grid.createbegin();
grid.createBegin();
// /////////////////////////////////////////////////////
// Load the AmiraMesh file
......@@ -460,6 +460,6 @@ void Dune::AmiraMeshReader<Dune::UGGrid<2,2> >::read(Dune::UGGrid<2,2>& grid,
std::cout << "amiraloadmesh: " << noOfCreatedElem << " elements created" << std::endl;
grid.createend();
grid.createEnd();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment