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

Method GetCell

Testing/GenericBridge/vtkBridgeCellIterator.cxx:95–101  ·  view source on GitHub ↗

------------------------------------------------------------------------------ Description: Cell at current position \pre not_at_end: !IsAtEnd() \pre c_exists: c!=0 THREAD SAFE

Source from the content-addressed store, hash-verified

93// \pre c_exists: c!=0
94// THREAD SAFE
95void vtkBridgeCellIterator::GetCell(vtkGenericAdaptorCell* c)
96{
97 assert("pre: not_at_end" && !IsAtEnd());
98 assert("pre: c_exists" && c != nullptr);
99
100 this->CurrentIterator->GetCell(c);
101}
102
103//------------------------------------------------------------------------------
104// Description:

Callers 5

InitMethod · 0.45
DeepCopyMethod · 0.45
GetTupleMethod · 0.45
GetComponentMethod · 0.45

Calls 2

assertFunction · 0.50
IsAtEndFunction · 0.50

Tested by

no test coverage detected