From 6f03ef6ff9f52171fc06d7743090fb8e8b6e8fd0 Mon Sep 17 00:00:00 2001 From: Thomas Fischer <thomas.fischer@ufz.de> Date: Mon, 19 Jan 2015 08:11:35 +0100 Subject: [PATCH] [MeL] Using new interface of MinimalBoundingSphere. Since MinimalBoundingSphere uses MathLib::Point instead of GeoLib::Point. --- MeshLib/MeshQuality/RadiusEdgeRatioMetric.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MeshLib/MeshQuality/RadiusEdgeRatioMetric.cpp b/MeshLib/MeshQuality/RadiusEdgeRatioMetric.cpp index e19a869c36a..22fa2bc5faf 100644 --- a/MeshLib/MeshQuality/RadiusEdgeRatioMetric.cpp +++ b/MeshLib/MeshQuality/RadiusEdgeRatioMetric.cpp @@ -32,7 +32,7 @@ void RadiusEdgeRatioMetric::calculateQuality () { Element const& elem (*elements[k]); std::size_t const n_nodes (elem.getNBaseNodes()); - std::vector<GeoLib::Point*> pnts(n_nodes); + std::vector<MathLib::MathPoint*> pnts(n_nodes); std::copy_n(elem.getNodes(), n_nodes, pnts.begin()); GeoLib::MinimalBoundingSphere const s(pnts); double min, max; -- GitLab