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

Method AddExtent

Common/ExecutionModel/vtkExtentSplitter.cxx:146–160  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

144
145//------------------------------------------------------------------------------
146void vtkExtentSplitter::AddExtent(int x0, int x1, int y0, int y1, int z0, int z1)
147{
148 // Queue the extent.
149 vtkExtentSplitterExtent e;
150 e.extent[0] = x0;
151 e.extent[1] = x1;
152 e.extent[2] = y0;
153 e.extent[3] = y1;
154 e.extent[4] = z0;
155 e.extent[5] = z1;
156 this->Internal->Queue.push(e);
157
158 // Previously calculated sub-extents are now invalid.
159 this->Internal->SubExtents.clear();
160}
161
162//------------------------------------------------------------------------------
163void vtkExtentSplitter::AddExtent(int* extent)

Callers 1

Calls 2

pushMethod · 0.45
clearMethod · 0.45

Tested by

no test coverage detected