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

Method AddExtentSource

Common/ExecutionModel/vtkExtentSplitter.cxx:101–116  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

99
100//------------------------------------------------------------------------------
101void vtkExtentSplitter::AddExtentSource(
102 int id, int priority, int x0, int x1, int y0, int y1, int z0, int z1)
103{
104 // Add the source.
105 vtkExtentSplitterSource& source = this->Internal->Sources[id];
106 source.extent[0] = x0;
107 source.extent[1] = x1;
108 source.extent[2] = y0;
109 source.extent[3] = y1;
110 source.extent[4] = z0;
111 source.extent[5] = z1;
112 source.priority = priority;
113
114 // Previously calculated sub-extents are now invalid.
115 this->Internal->SubExtents.clear();
116}
117
118//------------------------------------------------------------------------------
119void vtkExtentSplitter::AddExtentSource(int id, int priority, int* extent)

Callers 1

Calls 1

clearMethod · 0.45

Tested by

no test coverage detected