Removed debug write of VTK points
This commit is contained in:
parent
c414e7a093
commit
c9d077171f
1 changed files with 0 additions and 16 deletions
|
@ -333,22 +333,6 @@ void Foam::sharedPoints::calcSharedPoints()
|
|||
nShared++;
|
||||
}
|
||||
}
|
||||
|
||||
const pointField& P = meshes_[meshI].points();
|
||||
OFstream ppp("points" + name(meshI) + ".vtk");
|
||||
ppp << "# vtk DataFile Version 2.0" << nl
|
||||
<< "points" + name(meshI) << ".vtk" << nl
|
||||
<< "ASCII" << nl
|
||||
<< "DATASET POLYDATA" << nl
|
||||
<< "POINTS " << curShared.size() << " float" << nl;
|
||||
|
||||
forAll (curShared, i)
|
||||
{
|
||||
ppp << float(P[curShared[i]].x()) << ' '
|
||||
<< float(P[curShared[i]].y()) << ' '
|
||||
<< float(P[curShared[i]].z())
|
||||
<< nl;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue