From 6ffa6e9cb46c791db61d22ebdef198eb6d9ef462 Mon Sep 17 00:00:00 2001 From: Henrik Rusche Date: Wed, 6 Jun 2018 17:57:35 +0200 Subject: [PATCH] BUGFIX: Re-enable FO's movePoints --- src/foam/meshes/polyMesh/polyMesh.C | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/foam/meshes/polyMesh/polyMesh.C b/src/foam/meshes/polyMesh/polyMesh.C index b42a98f27..6ef9def6d 100644 --- a/src/foam/meshes/polyMesh/polyMesh.C +++ b/src/foam/meshes/polyMesh/polyMesh.C @@ -1236,6 +1236,8 @@ Foam::tmp Foam::polyMesh::movePoints // Moved from fvMesh.C in 1.6.x merge. HJ, 29/Aug/2010 meshObjectBase::allMovePoints(*this); + const_cast(time()).functionObjects().movePoints(allPoints_); + return sweptVols; }