Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / applications / utilities / postProcessing / dataConversion / foamToEnsightParts / moveMesh.H
blob284a0df35bba33901eda224f1dffe7eeb3954f96
2     IOobject io
3     (
4         "points",
5         runTime.timeName(),
6         polyMesh::meshSubDir,
7         mesh
8     );
10     if (io.headerOk())
11     {
12         // Read new points
13         io.readOpt() = IOobject::MUST_READ;
14         mesh.movePoints(pointIOField(io));
15     }