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

Method SetExtent

Filters/Generic/vtkGenericGeometryFilter.cxx:80–93  ·  view source on GitHub ↗

------------------------------------------------------------------------------ Specify a (xmin,xmax, ymin,ymax, zmin,zmax) bounding box to clip data.

Source from the content-addressed store, hash-verified

78//------------------------------------------------------------------------------
79// Specify a (xmin,xmax, ymin,ymax, zmin,zmax) bounding box to clip data.
80void vtkGenericGeometryFilter::SetExtent(
81 double xMin, double xMax, double yMin, double yMax, double zMin, double zMax)
82{
83 double extent[6];
84
85 extent[0] = xMin;
86 extent[1] = xMax;
87 extent[2] = yMin;
88 extent[3] = yMax;
89 extent[4] = zMin;
90 extent[5] = zMax;
91
92 this->SetExtent(extent);
93}
94
95//------------------------------------------------------------------------------
96// Specify a (xmin,xmax, ymin,ymax, zmin,zmax) bounding box to clip data.

Callers 11

CopyStructureMethod · 0.45
ConvertMethod · 0.45
ProcessStructuredGridMethod · 0.45
RequestDataMethod · 0.45
RequestDataMethod · 0.45
RequestDataMethod · 0.45
blankGrid.pyFile · 0.45
MakeRectilinearGridFunction · 0.45

Calls 2

maxFunction · 0.50
ModifiedMethod · 0.45

Tested by 2

MakeRectilinearGridFunction · 0.36