Forward compatibility: flex
[foam-extend-3.2.git] / src / surfMesh / surfaceFormats / vtk / VTKsurfaceFormatCore.C
blobcb4a0f40e83142f10805d3aa531f64ef8a393f29
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation, either version 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "objectRegistry.H"
27 #include "VTKsurfaceFormatCore.H"
28 #include "clock.H"
30 // * * * * * * * * * * * * * Private Member Functions  * * * * * * * * * * * //
32 void Foam::fileFormats::VTKsurfaceFormatCore::writeHeader
34     Ostream& os,
35     const pointField& pointLst
38     // Write header
39     os  << "# vtk DataFile Version 2.0" << nl
40         << "surface written " << clock::dateTime().c_str() << nl
41         << "ASCII" << nl
42         << nl
43         << "DATASET POLYDATA" << nl;
45     // Write vertex coords
46     os  << "POINTS " << pointLst.size() << " float" << nl;
47     forAll(pointLst, ptI)
48     {
49         const point& pt = pointLst[ptI];
51         os  << pt.x() << ' ' << pt.y() << ' ' << pt.z() << nl;
52     }
56 void Foam::fileFormats::VTKsurfaceFormatCore::writeTail
58     Ostream& os,
59     const UList<surfZone>& zoneLst
62     label nFaces = 0;
63     forAll(zoneLst, zoneI)
64     {
65         nFaces += zoneLst[zoneI].size();
66     }
68     // Print zone numbers
69     os  << nl
70         << "CELL_DATA " << nFaces << nl
71         << "FIELD attributes 1" << nl
72         << "zone 1 " << nFaces << " float" << nl;
75     forAll(zoneLst, zoneI)
76     {
77         forAll(zoneLst[zoneI], localFaceI)
78         {
79             if (localFaceI)
80             {
81                 if (localFaceI % 20)
82                 {
83                     os << ' ';
84                 }
85                 else
86                 {
87                     os << nl;
88                 }
89             }
90             os  << zoneI + 1;
91         }
92         os  << nl;
93     }
97 void Foam::fileFormats::VTKsurfaceFormatCore::writeTail
99     Ostream& os,
100     const UList<label>& zoneIds
103     // Print zone numbers
104     os  << nl
105         << "CELL_DATA " << zoneIds.size() << nl
106         << "FIELD attributes 1" << nl
107         << "zone 1 " << zoneIds.size() << " float" << nl;
109     forAll(zoneIds, faceI)
110     {
111         if (faceI)
112         {
113             if (faceI % 20)
114             {
115                 os << ' ';
116             }
117             else
118             {
119                 os << nl;
120             }
121         }
122         os  << zoneIds[faceI] + 1;
123     }
124     os  << nl;
128 // ************************************************************************* //