------------------------------------------------------------------------------
| 65 | |
| 66 | //------------------------------------------------------------------------------ |
| 67 | void vtkPointSet::Cleanup() |
| 68 | { |
| 69 | if (this->Points) |
| 70 | { |
| 71 | this->Points->UnRegister(this); |
| 72 | this->Points = nullptr; |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | //------------------------------------------------------------------------------ |
| 77 | void vtkPointSet::Initialize() |
no test coverage detected