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

Method GetCellAttributeList

Common/DataModel/vtkCellGrid.cxx:618–627  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

616}
617
618std::vector<vtkSmartPointer<vtkCellAttribute>> vtkCellGrid::GetCellAttributeList() const
619{
620 std::vector<vtkSmartPointer<vtkCellAttribute>> result;
621 result.reserve(this->Attributes.size());
622 for (const auto& entry : this->Attributes)
623 {
624 result.emplace_back(entry.second);
625 }
626 return result;
627}
628
629vtkCellAttribute* vtkCellGrid::GetCellAttribute(vtkStringToken::Hash hash)
630{

Callers 10

updateGlyphSourcesFunction · 0.80
InitializeMethod · 0.80
InitializeMethod · 0.80
InitializeMethod · 0.80
GeneratePointDataMethod · 0.80
checkRangeForFileMethod · 0.80
setUpMethod · 0.80

Calls 3

reserveMethod · 0.45
sizeMethod · 0.45
emplace_backMethod · 0.45

Tested by 2

checkRangeForFileMethod · 0.64
setUpMethod · 0.64