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

Method GetSubExtentSource

Common/ExecutionModel/vtkExtentSplitter.cxx:213–222  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

211
212//------------------------------------------------------------------------------
213int vtkExtentSplitter::GetSubExtentSource(int index)
214{
215 if (index < 0 || index >= this->GetNumberOfSubExtents())
216 {
217 vtkErrorMacro("SubExtent index " << index << " is out of range [0,"
218 << this->GetNumberOfSubExtents() - 1 << "]");
219 return -1;
220 }
221 return this->Internal->SubExtents[index].source;
222}
223
224//------------------------------------------------------------------------------
225int vtkExtentSplitter::ComputeSubExtents()

Callers 2

ReadXMLDataMethod · 0.80

Calls 1

GetNumberOfSubExtentsMethod · 0.95

Tested by

no test coverage detected