------------------------------------------------------------------------------ Should be called by GetCell() prior to any other method invocation
| 53 | //------------------------------------------------------------------------------ |
| 54 | // Should be called by GetCell() prior to any other method invocation |
| 55 | void vtkConvexPointSet::Initialize() |
| 56 | { |
| 57 | // Initialize |
| 58 | vtkIdType numPts = this->GetNumberOfPoints(); |
| 59 | if (numPts < 1) |
| 60 | return; |
| 61 | |
| 62 | this->Triangulate(0, this->TetraIds, this->TetraPoints); |
| 63 | } |
| 64 | |
| 65 | //------------------------------------------------------------------------------ |
| 66 | int vtkConvexPointSet::GetNumberOfFaces() |
nothing calls this directly
no test coverage detected