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

Method SetFieldRange

Filters/Statistics/vtkVisualStatistics.cxx:222–230  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

220}
221
222void vtkVisualStatistics::SetFieldRange(const char* field, double lo, double hi)
223{
224 if (!field || !field[0])
225 {
226 return;
227 }
228 std::string fieldStr(field);
229 this->SetFieldRange(fieldStr, lo, hi);
230}
231
232void vtkVisualStatistics::SetFieldRange(const std::string& field, double lo, double hi)
233{

Callers 3

TestAlgorithmParametersFunction · 0.80
VisualStatisticsTestFunction · 0.80

Calls 4

emptyMethod · 0.45
findMethod · 0.45
endMethod · 0.45
ModifiedMethod · 0.45

Tested by 2

TestAlgorithmParametersFunction · 0.64
VisualStatisticsTestFunction · 0.64