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

Method GetGridExtent

Filters/Geometry/vtkStructuredGridConnectivity.h:636–644  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

634
635//------------------------------------------------------------------------------
636inline void vtkStructuredGridConnectivity::GetGridExtent(int gridID, int ext[6])
637{
638 assert("pre: gridID out-of-bounds!" &&
639 (gridID >= 0 && gridID < static_cast<int>(this->NumberOfGrids)));
640 for (int i = 0; i < 6; ++i)
641 {
642 ext[i] = this->GridExtents[gridID * 6 + i];
643 }
644}
645
646//------------------------------------------------------------------------------
647inline void vtkStructuredGridConnectivity::GetGhostedGridExtent(int gridID, int ext[6])

Callers 15

PrintSelfMethod · 0.95
MarkNodePropertyMethod · 0.95
FillGhostArraysMethod · 0.95
EstablishNeighborsMethod · 0.95
SetBlockTopologyMethod · 0.95
CreateGhostedExtentMethod · 0.95
GetGhostedDataSetFunction · 0.45
SerializeGhostPointsMethod · 0.45

Calls 1

assertFunction · 0.50

Tested by 1

GetGhostedDataSetFunction · 0.36