@{ * Initialize point interpolation method. * Note that pd HAS to be the vtkDataSetAttributes object which * will later be used with InterpolatePoint or InterpolateEdge. * ext is no longer used. * If shallowCopyArrays is true, input arrays are copied to the output * instead of new ones being allocated. */
| 567 | * instead of new ones being allocated. |
| 568 | */ |
| 569 | void InterpolateAllocate(vtkDataSetAttributes* pd, vtkIdType sze = 0, vtkIdType ext = 1000) |
| 570 | { |
| 571 | this->InterpolateAllocate(pd, sze, ext, 0); |
| 572 | } |
| 573 | void InterpolateAllocate( |
| 574 | vtkDataSetAttributes* pd, vtkIdType sze, vtkIdType ext, int shallowCopyArrays); |
| 575 | ///@} |
nothing calls this directly
no test coverage detected