| 202 | } |
| 203 | |
| 204 | vtkUnsignedCharArray* vtkCellGrid::GetGhostArray(int type) |
| 205 | { |
| 206 | vtkUnsignedCharArray* result = nullptr; |
| 207 | auto* dsa = this->FindAttributes(type); |
| 208 | if (!dsa) |
| 209 | { |
| 210 | return result; |
| 211 | } |
| 212 | result = |
| 213 | vtkArrayDownCast<vtkUnsignedCharArray>(dsa->GetArray(vtkDataSetAttributes::GhostArrayName())); |
| 214 | return result; |
| 215 | } |
| 216 | |
| 217 | //------------------------------------------------------------------------------ |
| 218 | bool vtkCellGrid::SupportsGhostArray(int type) |
nothing calls this directly
no test coverage detected