------------------------------------------------------------------------------
| 1044 | |
| 1045 | //------------------------------------------------------------------------------ |
| 1046 | bool vtkDataSet::SupportsGhostArray(int type) |
| 1047 | { |
| 1048 | if (type == POINT || type == CELL) |
| 1049 | { |
| 1050 | return true; |
| 1051 | } |
| 1052 | return false; |
| 1053 | } |
| 1054 | |
| 1055 | //------------------------------------------------------------------------------ |
| 1056 | vtkUnsignedCharArray* vtkDataSet::AllocatePointGhostArray() |
no outgoing calls