| 43 | } |
| 44 | |
| 45 | void vtkPointsProjectedHull::InitFlags() |
| 46 | { |
| 47 | int i; |
| 48 | |
| 49 | this->Pts = nullptr; |
| 50 | this->Npts = 0; |
| 51 | |
| 52 | for (i = 0; i < 3; i++) |
| 53 | { |
| 54 | this->CCWHull[i] = nullptr; |
| 55 | this->HullSize[i] = 0; |
| 56 | for (int j = 0; j < 4; j++) |
| 57 | { |
| 58 | this->HullBBox[i][j] = 0.0; |
| 59 | } |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | void vtkPointsProjectedHull::ClearAllocations() |
| 64 | { |
no outgoing calls
no test coverage detected