Skip to content
Snippets Groups Projects
Commit 155eb9d4 authored by Kilian Weishaupt's avatar Kilian Weishaupt
Browse files

[makeGeometry] Fix for Dune < 2.6

* due to a typo, the constructor got the original points and the
  not corrected ones
parent 3b6c7059
No related branches found
No related tags found
1 merge request!921[makeGeometry] Fix for Dune < 2.6
...@@ -150,7 +150,7 @@ auto makeDuneQuadrilaterial(const std::vector<Dune::FieldVector<Scalar, 3>>& poi ...@@ -150,7 +150,7 @@ auto makeDuneQuadrilaterial(const std::vector<Dune::FieldVector<Scalar, 3>>& poi
const auto quadrilateral = GeometryType(Dune::GeometryTypes::quadrilateral, corners); const auto quadrilateral = GeometryType(Dune::GeometryTypes::quadrilateral, corners);
#else #else
static Dune::GeometryType gt(Dune::GeometryType::cube, dim); static Dune::GeometryType gt(Dune::GeometryType::cube, dim);
const auto quadrilateral = GeometryType(gt, points); const auto quadrilateral = GeometryType(gt, corners);
#endif #endif
const auto eps = 1e-20; const auto eps = 1e-20;
......
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