double precision for vtkPoints

simplifies migration to new class
This commit is contained in:
Martin Diehl 2020-03-16 20:01:50 +01:00
parent 5a90982d85
commit a1beb80b54
2 changed files with 2 additions and 1 deletions

@ -1 +1 @@
Subproject commit b17c5cfe67e8db6a80d9b832e789e24561b829dd
Subproject commit c4e70bb88f6de2e1bba328d5c38798033426a299

View File

@ -43,6 +43,7 @@ for name in filenames:
# ------------------------------------------ process data ---------------------------------------
Polydata = vtk.vtkPolyData()
Points = vtk.vtkPoints()
Points.SetDataTypeToDouble()
for p in table.get(options.pos):
pointID = Points.InsertNextPoint(p)