Skip to content

WIP: Remove ComputeBounds from vtkPolyData

  1. Remove the slow ComputeBounds function from vtkPolyData which iterates over each cell to compute the bounds. Now it falls back on the superclass vtkPointSet's ComputeBounds which computes the bounds over all the points much faster. The results can be different when there are points that are not part of any cells.
  2. Updated few of the tests that were failing due to this reason.
  3. Fixed some bugs that were exposed due to these changes.

Merge request reports