Skip to content
Snippets Groups Projects
Commit 101aa4e6 authored by mattijs's avatar mattijs
Browse files

ENH: objToVTK: output lines

parent 06cf8642
Branches
Tags
No related merge requests found
......@@ -210,6 +210,14 @@ int main(int argc, char *argv[])
outFile << pt.x() << ' ' << pt.y() << ' ' << pt.z() << nl;
}
outFile
<< "VERTICES " << points.size() << ' ' << (2 * points.size()) << nl;
forAll(points, i)
{
outFile << 1 << ' ' << i << nl;
}
label nItems = 0;
forAll(polyLines, polyI)
{
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment