-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathread.py
33 lines (31 loc) · 882 Bytes
/
read.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import vtk
reader = vtk.vtkDataSetReader()
reader.SetFileName("ugrid_demo_binary.vtk")
reader.Update()
grid = reader.GetOutput()
# 遍历 Points
for p in range(grid.GetNumberOfPoints()):
x, y, z = grid.GetPoint(p)
print(p, ':', x, y, z)
# 遍历 Cells
for c in range(grid.GetNumberOfCells()):
print(c, ':', end=' ')
cell = grid.GetCell(c)
for p in range(cell.GetNumberOfPoints()):
print(cell.GetPointId(p), end=' ')
print()
reader = vtk.vtkXMLUnstructuredGridReader()
reader.SetFileName("ugrid_demo_ascii.vtu")
reader.Update()
grid = reader.GetOutput()
# 遍历 Points
for p in range(grid.GetNumberOfPoints()):
x, y, z = grid.GetPoint(p)
print(p, ':', x, y, z)
# 遍历 Cells
for c in range(grid.GetNumberOfCells()):
print(c, ':', end=' ')
cell = grid.GetCell(c)
for p in range(cell.GetNumberOfPoints()):
print(cell.GetPointId(p), end=' ')
print()