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

Method PrintSelf

Common/DataModel/vtkFieldData.cxx:163–176  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

161
162//------------------------------------------------------------------------------
163void vtkFieldData::BasicIterator::PrintSelf(ostream& os, vtkIndent indent)
164{
165 os << indent << "BasicIterator:{";
166 size_t listSize = this->List.size();
167 if (listSize > 0)
168 {
169 os << this->List[0];
170 for (size_t i = 1; i < listSize; ++i)
171 {
172 os << ", " << this->List[i];
173 }
174 }
175 os << "}" << endl;
176}
177
178//------------------------------------------------------------------------------
179vtkFieldData::BasicIterator& vtkFieldData::BasicIterator::operator=(

Callers

nothing calls this directly

Calls 5

GetNumberOfComponentsMethod · 0.95
GetNumberOfTuplesMethod · 0.95
sizeMethod · 0.45
GetNumberOfArraysMethod · 0.45
GetArrayNameMethod · 0.45

Tested by

no test coverage detected