Nektar++
Functions
VtkStripsToPolys.cpp File Reference
#include <LibUtilities/BasicUtils/SessionReader.h>
#include <LibUtilities/BasicUtils/VtkUtil.hpp>
#include <vtkCellArray.h>
#include <vtkPointData.h>
#include <vtkPoints.h>
#include <vtkPolyData.h>
#include <vtkPolyDataReader.h>
#include <vtkPolyDataWriter.h>
#include <vtkTriangle.h>

Go to the source code of this file.

Functions

int main (int argc, char *argv[])
 

Function Documentation

◆ main()

int main ( int  argc,
char *  argv[] 
)

Definition at line 46 of file VtkStripsToPolys.cpp.

47 {
48  if (argc < 2)
49  {
50  cout << "Usage: VtkStripsToPolys vtk-file" << endl;
51  exit(-1);
52  }
53 
54  vtkIdType npts;
55 #if VTK_MAJOR_VERSION >= 9 || \
56  (VTK_MAJOR_VERSION >= 8 && VTK_MINOR_VERSION >= 90)
57  const vtkIdType *pts = 0;
58 #else
59  vtkIdType *pts = 0;
60 #endif
61 
62  // Read mesh
63  vtkPolyDataReader *vtkMeshReader = vtkPolyDataReader::New();
64  vtkMeshReader->SetFileName(argv[1]);
65  vtkMeshReader->Update();
66  vtkPolyData *vtkMesh = vtkMeshReader->GetOutput();
67  vtkPoints *vtkPoints = vtkMesh->GetPoints();
68  vtkCellArray *vtkStrips = vtkMesh->GetStrips();
69 
70  // Check we found points and strips in the file.
71  ASSERTL0(vtkPoints, "ERROR: cannot get points from mesh.");
72  ASSERTL0(vtkStrips, "ERROR: cannot get triangle strips from mesh.");
73 
74  // Create new cell array for polygons
75  vtkCellArray *vtkPolys = vtkCellArray::New();
76 
77  // Generate the polygons from the triangle strips
78  vtkStrips->InitTraversal();
79  for (int i = 0; vtkStrips->GetNextCell(npts, pts); ++i)
80  {
81  for (int j = 0; j < npts - 2; ++j)
82  {
83  vtkPolys->InsertNextCell(3, &pts[j]);
84  }
85  }
86 
87  // Create the new poly data
88  vtkPolyData *vtkNewMesh = vtkPolyData::New();
89  vtkNewMesh->SetPoints(vtkPoints);
90  vtkNewMesh->SetPolys(vtkPolys);
91 
92  // Copy data across
93  for (int i = 0; i < vtkMesh->GetPointData()->GetNumberOfArrays(); ++i)
94  {
95  vtkNewMesh->GetPointData()->SetScalars(
96  vtkMesh->GetPointData()->GetArray(i));
97  }
98 
99  // Write out the new mesh
100  vtkPolyDataWriter *vtkMeshWriter = vtkPolyDataWriter::New();
101  vtkMeshWriter->SetFileName(argv[2]);
102 #if VTK_MAJOR_VERSION <= 5
103  vtkMeshWriter->SetInput(vtkNewMesh);
104 #else
105  vtkMeshWriter->SetInputData(vtkNewMesh);
106 #endif
107  vtkMeshWriter->Write();
108 }
#define ASSERTL0(condition, msg)
Definition: ErrorUtil.hpp:215

References ASSERTL0.