16 lines
272 B
C
16 lines
272 B
C
{
|
|
IOobject io
|
|
(
|
|
"points",
|
|
runTime.timeName(),
|
|
polyMesh::meshSubDir,
|
|
mesh
|
|
);
|
|
|
|
if (io.headerOk())
|
|
{
|
|
// Read new points
|
|
io.readOpt() = IOobject::MUST_READ;
|
|
mesh.movePoints(pointIOField(io));
|
|
}
|
|
}
|