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

Method SetExtent

Common/DataModel/vtkCartesianGrid.cxx:415–425  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

413
414//------------------------------------------------------------------------------
415void vtkCartesianGrid::SetExtent(int x1, int x2, int y1, int y2, int z1, int z2)
416{
417 int ext[6];
418 ext[0] = x1;
419 ext[1] = x2;
420 ext[2] = y1;
421 ext[3] = y2;
422 ext[4] = z1;
423 ext[5] = z2;
424 this->SetExtent(ext);
425}
426
427//------------------------------------------------------------------------------
428void vtkCartesianGrid::SetExtent(int* extent)

Callers 3

ShallowCopyMethod · 0.95
DeepCopyMethod · 0.95
CopyStructureMethod · 0.95

Calls 4

GetDimensionsMethod · 0.95
SetExtentFunction · 0.85
ModifiedMethod · 0.45

Tested by

no test coverage detected