diff --git a/ProcessLib/DeactivatedSubdomain.cpp b/ProcessLib/DeactivatedSubdomain.cpp index 1ed39e07e6c922ae535c03f4f9d2ceb9903397f9..0df6040cbdf038313ddaadeee13e18cab0b2f682 100644 --- a/ProcessLib/DeactivatedSubdomain.cpp +++ b/ProcessLib/DeactivatedSubdomain.cpp @@ -66,9 +66,8 @@ bool DeactivatedSubdomain::isDeactivated(MathLib::Point3d const& point, // Position r on the line at given time. Eigen::Vector3d const r = a + t * time_interval.getValue(time); - Eigen::Map<Eigen::Vector3d const> const p{point.data(), 3}; // Return true if p is "behind" the plane through r. - return (p - r).dot(t) <= 0; + return (point.asEigenVector3d() - r).dot(t) <= 0; } } // namespace ProcessLib