| 61 | } |
| 62 | |
| 63 | void vtkPointsProjectedHull::ClearAllocations() |
| 64 | { |
| 65 | int i; |
| 66 | for (i = 0; i < 3; i++) |
| 67 | { |
| 68 | delete[] this->CCWHull[i]; |
| 69 | this->CCWHull[i] = nullptr; |
| 70 | } |
| 71 | delete[] this->Pts; |
| 72 | this->Pts = nullptr; |
| 73 | } |
| 74 | #define VTK_GETCCWHULL(which, dim) \ |
| 75 | int vtkPointsProjectedHull::GetCCWHull##which(float* pts, int len) \ |
| 76 | { \ |
no outgoing calls
no test coverage detected