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

Method GetAttributesToInterpolate

Common/DataModel/vtkGenericAttributeCollection.cxx:430–437  ·  view source on GitHub ↗

------------------------------------------------------------------------------ Description: Indices of attributes to interpolate. \pre not_empty: !IsEmpty() \post valid_result: GetNumberOfAttributesToInterpolate()>0

Source from the content-addressed store, hash-verified

428// \pre not_empty: !IsEmpty()
429// \post valid_result: GetNumberOfAttributesToInterpolate()>0
430int* vtkGenericAttributeCollection::GetAttributesToInterpolate()
431{
432 assert("pre: not_empty" && !IsEmpty());
433
434 assert("post: valid_result" && !(this->NumberOfAttributesToInterpolate > 0));
435
436 return this->AttributesToInterpolate;
437}
438
439//------------------------------------------------------------------------------
440// Description

Callers

nothing calls this directly

Calls 2

IsEmptyFunction · 0.70
assertFunction · 0.50

Tested by

no test coverage detected