All public logs

From KitwarePublic
Jump to navigationJump to search

Combined display of all available logs of KitwarePublic. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 02:35, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Python/WriteTriangleToFile.py (content was: "==WriteTriangleToFile.py== <source lang="python"> import vtk from vtk import * Points = vtk.vtkPoints() Triangles = vtk.vtkCellArray() Triangle = vtk.vtkTriangle(); id = Points.InsertNextPoint(1.0, 0.0, 0.0) id = Points.InsertNextPoint(0.0, 0.0, 0.0) id = Points.InsertNextPoint(0.0, 1.0, 0.0) Triangle.GetPointIds().SetId(0, 0); Triangle.GetPointIds().SetId(1, 1); Triangle.GetPointIds().SetId(2, 2); Triangles.InsertNextCell(Triangle); polydata = vtk.vtkPolyData() polydata.S...")