------------------------------------------------------------------------------
| 63 | |
| 64 | //------------------------------------------------------------------------------ |
| 65 | vtkBSPIntersections::vtkBSPIntersections() |
| 66 | { |
| 67 | this->Cuts = nullptr; |
| 68 | this->NumberOfRegions = 0; |
| 69 | this->RegionList = nullptr; |
| 70 | this->ComputeIntersectionsUsingDataBounds = 0; |
| 71 | vtkMath::UninitializeBounds(this->CellBoundsCache); |
| 72 | } |
| 73 | |
| 74 | //------------------------------------------------------------------------------ |
| 75 | vtkBSPIntersections::~vtkBSPIntersections() |
nothing calls this directly
no test coverage detected