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

Function StringExtent

Filters/Geometry/Testing/Cxx/TestStructuredAMRNeighbor.cxx:23–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21#define KMAX(ext) ext[5]
22
23std::string StringExtent(int ext[6])
24{
25 std::ostringstream oss;
26 oss.clear();
27 oss.str("");
28 for (int i = 0; i < 3; ++i)
29 {
30 oss << "[" << ext[i * 2] << " " << ext[i * 2 + 1] << "] ";
31 }
32 return (oss.str());
33}
34
35//------------------------------------------------------------------------------
36int CheckExtents(int ext[6], int exp[6])

Callers 1

CheckExtentsFunction · 0.85

Calls 2

clearMethod · 0.45
strMethod · 0.45

Tested by

no test coverage detected