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

Method GetCellAttribute

Common/DataModel/vtkCellGrid.cxx:629–637  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

627}
628
629vtkCellAttribute* vtkCellGrid::GetCellAttribute(vtkStringToken::Hash hash)
630{
631 auto it = this->Attributes.find(hash);
632 if (it == this->Attributes.end())
633 {
634 return nullptr;
635 }
636 return it->second;
637}
638
639vtkCellAttribute* vtkCellGrid::GetCellAttributeById(int attributeId)
640{

Callers 4

QueryMethod · 0.80
InterpolatePointsMethod · 0.80
QueryMethod · 0.80
QueryMethod · 0.80

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected