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

Function GetMin

Common/DataModel/vtkPointLocator.cxx:475–485  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

473
474//------------------------------------------------------------------------------
475static int GetMin(const int foo[8])
476{
477 int result = foo[0];
478 int i;
479
480 for (i = 1; i < 8; i++)
481 {
482 result = std::min(foo[i], result);
483 }
484 return result;
485}
486
487//------------------------------------------------------------------------------
488static double GetMax(const double foo[8])

Callers 1

FindDistributedPointsMethod · 0.85

Calls 1

minFunction · 0.50

Tested by

no test coverage detected