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

Method GetNumberOfPoints

Common/DataModel/vtkCellIterator.h:301–309  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

299
300//------------------------------------------------------------------------------
301inline vtkIdType vtkCellIterator::GetNumberOfPoints()
302{
303 if (!this->CheckCache(PointIdsFlag))
304 {
305 this->FetchPointIds();
306 this->SetCache(PointIdsFlag);
307 }
308 return this->PointIds->GetNumberOfIds();
309}
310
311//------------------------------------------------------------------------------
312inline vtkIdType vtkCellIterator::GetNumberOfFaces()

Callers

nothing calls this directly

Calls 3

SetCacheMethod · 0.80
FetchPointIdsMethod · 0.45
GetNumberOfIdsMethod · 0.45

Tested by

no test coverage detected