Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #include "writePatchGeom.H"
00029 #include <OpenFOAM/OFstream.H>
00030 #include <OpenFOAM/floatScalar.H>
00031 #include "writeFuns.H"
00032
00033
00034
00035 namespace Foam
00036 {
00037
00038
00039
00040 void writePatchGeom
00041 (
00042 const bool binary,
00043 const faceList& faces,
00044 const pointField& points,
00045 std::ofstream& pStream
00046 )
00047 {
00048 pStream << "POINTS " << points.size() << " float" << std::endl;
00049
00050 DynamicList<floatScalar> ptField(3*points.size());
00051
00052 writeFuns::insert(points, ptField);
00053
00054 writeFuns::write(pStream, binary, ptField);
00055
00056
00057 label nFaceVerts = 0;
00058
00059 forAll(faces, faceI)
00060 {
00061 nFaceVerts += faces[faceI].size() + 1;
00062 }
00063 pStream << "POLYGONS " << faces.size() << ' ' << nFaceVerts
00064 << std::endl;
00065
00066
00067 DynamicList<label> vertLabels(nFaceVerts);
00068
00069 forAll(faces, faceI)
00070 {
00071 const face& f = faces[faceI];
00072
00073 vertLabels.append(f.size());
00074
00075 writeFuns::insert(f, vertLabels);
00076 }
00077 writeFuns::write(pStream, binary, vertLabels);
00078 }
00079
00080
00081
00082
00083 }
00084
00085