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

Function VTK_SIZEHINT

Common/DataModel/vtkCellArray.h:1771–1783  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1769
1770//----------------------------------------------------------------------------
1771inline int vtkCellArray::GetNextCell(vtkIdType& npts, vtkIdType const*& pts) VTK_SIZEHINT(pts, npts)
1772{
1773 if (this->TraversalCellId < this->GetNumberOfCells())
1774 {
1775 this->GetCellAtId(this->TraversalCellId, npts, pts);
1776 ++this->TraversalCellId;
1777 return 1;
1778 }
1779
1780 npts = 0;
1781 pts = nullptr;
1782 return 0;
1783}
1784
1785//----------------------------------------------------------------------------
1786inline int vtkCellArray::GetNextCell(vtkIdList* pts)

Callers 15

vtkAnnulus.hFile · 0.70
vtkCell3D.hFile · 0.70
vtkCartesianGrid.hFile · 0.70
vtkVoxel.hFile · 0.70
vtkHexahedron.hFile · 0.70
vtkTetra.hFile · 0.70
vtkCell.hFile · 0.70
vtkImageData.hFile · 0.70
vtkGraph.hFile · 0.70
vtkKdNode.hFile · 0.70

Calls 3

GetNumberOfCellsMethod · 0.45
GetCellAtIdMethod · 0.45
DispatchMethod · 0.45

Tested by

no test coverage detected