------------------------------------------------------------------------------
| 2313 | |
| 2314 | //------------------------------------------------------------------------------ |
| 2315 | void vtkDataSetSurfaceFilter::DeleteQuadHash() |
| 2316 | { |
| 2317 | vtkIdType i; |
| 2318 | |
| 2319 | this->DeleteAllFastGeomQuads(); |
| 2320 | |
| 2321 | for (i = 0; i < this->QuadHashLength; ++i) |
| 2322 | { |
| 2323 | this->QuadHash[i] = nullptr; |
| 2324 | } |
| 2325 | |
| 2326 | delete[] this->QuadHash; |
| 2327 | this->QuadHash = nullptr; |
| 2328 | this->QuadHashLength = 0; |
| 2329 | delete[] this->PointMap; |
| 2330 | this->PointMap = nullptr; |
| 2331 | delete this->EdgeMap; |
| 2332 | this->EdgeMap = nullptr; |
| 2333 | } |
| 2334 | |
| 2335 | //------------------------------------------------------------------------------ |
| 2336 | void vtkDataSetSurfaceFilter::InsertQuadInHash( |
no test coverage detected