------------------------------------------------------------------------------
| 18 | |
| 19 | //------------------------------------------------------------------------------ |
| 20 | vtkGenericDataSet::vtkGenericDataSet() |
| 21 | { |
| 22 | this->Tessellator = nullptr; |
| 23 | this->Attributes = vtkGenericAttributeCollection::New(); |
| 24 | vtkMath::UninitializeBounds(this->Bounds); |
| 25 | } |
| 26 | |
| 27 | //------------------------------------------------------------------------------ |
| 28 | vtkGenericDataSet::~vtkGenericDataSet() |
nothing calls this directly
no test coverage detected