repo.or.cz
/
foam-extend-3.2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
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
blob
284a0df35bba33901eda224f1dffe7eeb3954f96
1
{
2
IOobject io
3
(
4
"points",
5
runTime.timeName(),
6
polyMesh::meshSubDir,
7
mesh
8
);
9
10
if (io.headerOk())
11
{
12
// Read new points
13
io.readOpt() = IOobject::MUST_READ;
14
mesh.movePoints(pointIOField(io));
15
}
16
}