Talk:VTK/Examples/Python: Difference between revisions
From KitwarePublic
Jump to navigationJump to search
(Blanked the page) |
(abc) |
||
Line 1: | Line 1: | ||
# Establish the specified edges using CellArray | |||
line = vtk.vtkCellArray() | |||
line.Allocate(8) | |||
line.InsertNextCell(2) | |||
line.InsertCellPoint(0) | |||
line.InsertCellPoint(1) | |||
line.InsertNextCell(2) | |||
line.InsertCellPoint(0) | |||
line.InsertCellPoint(2) | |||
line.InsertNextCell(2) | |||
line.InsertCellPoint(2) | |||
line.InsertCellPoint(3) | |||
line.InsertNextCell(2) | |||
line.InsertCellPoint(2) | |||
line.InsertCellPoint(4) | |||
line.InsertNextCell(2) | |||
line.InsertCellPoint(3) | |||
line.InsertCellPoint(4) | |||
line.InsertNextCell(2) | |||
line.InsertCellPoint(3) | |||
line.InsertCellPoint(5) | |||
line.InsertNextCell(2) | |||
line.InsertCellPoint(4) | |||
line.InsertCellPoint(5) | |||
line.InsertNextCell(2) | |||
line.InsertCellPoint(4) | |||
line.InsertCellPoint(6) |
Revision as of 18:36, 23 April 2015
# Establish the specified edges using CellArray line = vtk.vtkCellArray() line.Allocate(8) line.InsertNextCell(2) line.InsertCellPoint(0) line.InsertCellPoint(1) line.InsertNextCell(2) line.InsertCellPoint(0) line.InsertCellPoint(2) line.InsertNextCell(2) line.InsertCellPoint(2) line.InsertCellPoint(3) line.InsertNextCell(2) line.InsertCellPoint(2) line.InsertCellPoint(4) line.InsertNextCell(2) line.InsertCellPoint(3) line.InsertCellPoint(4) line.InsertNextCell(2) line.InsertCellPoint(3) line.InsertCellPoint(5) line.InsertNextCell(2) line.InsertCellPoint(4) line.InsertCellPoint(5) line.InsertNextCell(2) line.InsertCellPoint(4) line.InsertCellPoint(6)