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

Method GetPointIterator

Testing/GenericBridge/vtkBridgeCell.cxx:266–270  ·  view source on GitHub ↗

------------------------------------------------------------------------------ Description: Return the points of cell into `it'. \pre it_exists: it!=0

Source from the content-addressed store, hash-verified

264// Return the points of cell into `it'.
265// \pre it_exists: it!=0
266void vtkBridgeCell::GetPointIterator(vtkGenericPointIterator* it)
267{
268 assert("pre: it_exists" && it != nullptr);
269 static_cast<vtkBridgePointIterator*>(it)->InitWithCell(this);
270}
271
272//------------------------------------------------------------------------------
273// Description:

Callers 2

RequestDataMethod · 0.80
TestWithPointsAndCellsFunction · 0.80

Calls 2

assertFunction · 0.50
InitWithCellMethod · 0.45

Tested by 1

TestWithPointsAndCellsFunction · 0.64