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

Method GetCellTypes

Common/DataModel/vtkCellGrid.cxx:441–451  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

439}
440
441std::vector<std::string> vtkCellGrid::GetCellTypes() const
442{
443 auto cta = this->CellTypeArray();
444 std::vector<std::string> result;
445 result.reserve(cta.size());
446 for (const auto& cellTypeToken : cta)
447 {
448 result.push_back(cellTypeToken.Data());
449 }
450 return result;
451}
452
453const vtkCellMetadata* vtkCellGrid::GetCellType(vtkStringToken cellTypeName) const
454{

Callers 15

ReadPieceDataMethod · 0.45
WriteInlinePieceMethod · 0.45
WriteAppendedPieceMethod · 0.45
ReadPieceDataMethod · 0.45
GetSideSetMethod · 0.45
FillMixedShapeFunction · 0.45
AppendCellTypesMethod · 0.45
IsHomogeneousFunction · 0.45
DataSet ConvertMethod · 0.45
GetCellMethod · 0.45

Calls 5

CellTypeArrayMethod · 0.95
reserveMethod · 0.45
sizeMethod · 0.45
push_backMethod · 0.45
DataMethod · 0.45

Tested by 4

onMouseMoveMethod · 0.36
TestDataSetFailuresFunction · 0.36
checkAttributeMethod · 0.36