MCPcopy Create free account
hub / github.com/Kitware/VTK / ClearAllocations

Method ClearAllocations

Common/DataModel/vtkPointsProjectedHull.cxx:63–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61}
62
63void 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 { \

Callers 3

InitializeMethod · 0.95
UpdateMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected