Skip to content
Snippets Groups Projects
Commit c65bb0d9 authored by Tom Fischer's avatar Tom Fischer
Browse files

added direction vector

parent d9bfab23
No related branches found
No related tags found
No related merge requests found
......@@ -121,7 +121,10 @@ GeoLib::Grid<GeoLib::PointWithID>* GeoMapper::getFlatGrid() const
sfc_points[i] = new GeoLib::PointWithID(nodes[i]->getCoords(), nodes[i]->getID());
}
else
sfc_points = MeshLib::MshEditor::getSurfaceNodes(*_mesh);
{
double dir[3] = {1,0,0};
sfc_points = MeshLib::MshEditor::getSurfaceNodes(*_mesh, dir);
}
size_t nPoints (sfc_points.size());
for (unsigned i=0; i<nPoints; ++i)
{
......
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