@{ * Select all cells with a point degree in the range [minDegree,maxDegree). * The degree is the number of cells using a point. The selection is * indicated through the provided unsigned char array, with a non-zero * value indicates selection. The memory allocated for cellSelection must * be the maximum cell id referenced in the links. */
| 85 | * be the maximum cell id referenced in the links. |
| 86 | */ |
| 87 | void SelectCells(vtkIdType minMaxDegree[2], unsigned char* cellSelection) override |
| 88 | { |
| 89 | this->Impl->SelectCells(minMaxDegree, cellSelection); |
| 90 | } |
| 91 | ///@} |
| 92 | |
| 93 | /** |
no test coverage detected