Deletion log

From KitwarePublic
Jump to navigationJump to search

Below is a list of the most recent deletions.

Logs
  • 02:40, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Python/IterativeClosestPoints (content was: "==IterativeClosestPoints.py== <source lang="python"> from __future__ import print_function import vtk from vtk import * # ============ create source points ============== print("Creating source points...") sourcePoints = vtk.vtkPoints() sourceVertices = vtk.vtkCellArray() id = sourcePoints.InsertNextPoint(1.0, 0.1, 0.0) sourceVertices.InsertNextCell(1) sourceVertices.InsertCellPoint(id) id = sourcePoints.InsertNextPoint(0.1, 1.1, 0.0) sourceVertices.InsertNextCell(1) sourceV...")