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

Method AreExtentsEqual

Filters/Geometry/vtkStructuredAMRGridConnectivity.h:618–628  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

616
617//------------------------------------------------------------------------------
618inline bool vtkStructuredAMRGridConnectivity::AreExtentsEqual(int ext1[6], int ext2[6])
619{
620 for (int i = 0; i < 6; ++i)
621 {
622 if (ext1[i] != ext2[i])
623 {
624 return false;
625 }
626 } // END for
627 return true;
628}
629
630//------------------------------------------------------------------------------
631inline void vtkStructuredAMRGridConnectivity::PrintExtent(std::ostream& os, int ext[6])

Callers 1

GetAMRNeighborMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected