------------------------------------------------------------------------------
| 331 | |
| 332 | //------------------------------------------------------------------------------ |
| 333 | vtkDataSetSurfaceFilter::vtkDataSetSurfaceFilter() |
| 334 | { |
| 335 | this->QuadHash = nullptr; |
| 336 | this->PointMap = nullptr; |
| 337 | this->EdgeMap = nullptr; |
| 338 | this->QuadHashLength = 0; |
| 339 | this->NumberOfNewCells = 0; |
| 340 | |
| 341 | // Quad allocation stuff. |
| 342 | this->FastGeomQuadArrayLength = 0; |
| 343 | this->NumberOfFastGeomQuadArrays = 0; |
| 344 | this->FastGeomQuadArrays = nullptr; |
| 345 | this->NextArrayIndex = 0; |
| 346 | this->NextQuadIndex = 0; |
| 347 | this->FastMode = false; |
| 348 | this->PieceInvariant = 0; |
| 349 | |
| 350 | this->PassThroughCellIds = 0; |
| 351 | this->PassThroughPointIds = 0; |
| 352 | this->OriginalCellIds = nullptr; |
| 353 | this->OriginalPointIds = nullptr; |
| 354 | this->OriginalCellIdsName = nullptr; |
| 355 | this->OriginalPointIdsName = nullptr; |
| 356 | |
| 357 | this->NonlinearSubdivisionLevel = 1; |
| 358 | this->MatchBoundariesIgnoringCellOrder = 0; |
| 359 | |
| 360 | this->AllowInterpolation = true; |
| 361 | this->Delegation = false; |
| 362 | } |
| 363 | |
| 364 | //------------------------------------------------------------------------------ |
| 365 | vtkDataSetSurfaceFilter::~vtkDataSetSurfaceFilter() |