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

Method HasSpacing

Common/DataModel/vtkOverlappingAMRMetaData.cxx:1118–1129  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1116
1117//------------------------------------------------------------------------------
1118bool vtkOverlappingAMRMetaData::HasSpacing() const
1119{
1120 bool hasSpacing = true;
1121 for (unsigned int i = 0; i < this->GetNumberOfLevels(); i++)
1122 {
1123 if (!this->HasSpacing(i))
1124 {
1125 hasSpacing = false;
1126 }
1127 }
1128 return hasSpacing;
1129}
1130
1131//------------------------------------------------------------------------------
1132bool vtkOverlappingAMRMetaData::HasSpacing(unsigned int level) const

Callers 7

PrintSelfMethod · 0.95
CheckValidityMethod · 0.95
GetBoundsMethod · 0.95
FindCellMethod · 0.95
GetOriginMethod · 0.95
UpdateBoundsMethod · 0.95

Calls 2

GetNumberOfLevelsMethod · 0.45
GetTupleMethod · 0.45

Tested by

no test coverage detected