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

Method Initialize

Common/DataModel/vtkConvexPointSet.cxx:55–63  ·  view source on GitHub ↗

------------------------------------------------------------------------------ Should be called by GetCell() prior to any other method invocation

Source from the content-addressed store, hash-verified

53//------------------------------------------------------------------------------
54// Should be called by GetCell() prior to any other method invocation
55void 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//------------------------------------------------------------------------------
66int vtkConvexPointSet::GetNumberOfFaces()

Callers

nothing calls this directly

Calls 2

GetNumberOfPointsMethod · 0.45
TriangulateMethod · 0.45

Tested by

no test coverage detected