| 124 | } |
| 125 | |
| 126 | vtkStringToken::Hash vtkCellAttribute::GetHash() const |
| 127 | { |
| 128 | std::ostringstream str; |
| 129 | str << this->GetNumberOfComponents() << "-" << this->GetName().Data() << "-" |
| 130 | << "-" << this->GetSpace().Data(); |
| 131 | vtkStringToken result(str.str()); |
| 132 | return result.GetId(); |
| 133 | } |
| 134 | |
| 135 | vtkCellAttribute::CellTypeInfo vtkCellAttribute::GetCellTypeInfo(vtkStringToken cellType) const |
| 136 | { |
no test coverage detected