MCPcopy Create free account
hub / github.com/Kitware/ParaView / GetComponentRange

Method GetComponentRange

Remoting/Core/vtkPVArrayInformation.cxx:143–154  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

141
142//----------------------------------------------------------------------------
143const double* vtkPVArrayInformation::GetComponentRange(int comp) const
144{
145 try
146 {
147 return this->Components.at(comp + 1).Range.GetData();
148 }
149 catch (std::out_of_range&)
150 {
151 vtkErrorMacro("Invalid component number " << comp);
152 return nullptr;
153 }
154}
155
156//----------------------------------------------------------------------------
157void vtkPVArrayInformation::GetComponentRange(int comp, double range[2]) const

Callers 15

getDataInformationMethod · 0.80
ProcessTriggersMethod · 0.80
CSVWriterReader.pyFile · 0.80
GetRangeMethod · 0.80
GetDataBoundsMethod · 0.80
UpdateMethod · 0.80
PostInitializeProxyMethod · 0.80
TestPVArrayInformationFunction · 0.80
Q_FOREACHFunction · 0.80
GetValuesFunction · 0.80
RescaleDataRangeMethod · 0.80

Calls 1

GetDataMethod · 0.45

Tested by 2

TestPVArrayInformationFunction · 0.64