* Overload that allows `ReplaceCellAtId(cellId, {0, 1, 2})` syntax. * * @warning This can ONLY replace the cell if the size does not change. * Attempting to change cell size through this method will have undefined * results. */
| 809 | * results. |
| 810 | */ |
| 811 | void ReplaceCellAtId(vtkIdType cellId, const std::initializer_list<vtkIdType>& cell) |
| 812 | { |
| 813 | this->ReplaceCellAtId(cellId, static_cast<vtkIdType>(cell.size()), cell.begin()); |
| 814 | } |
| 815 | |
| 816 | /** |
| 817 | * Returns the size of the largest cell. The size is the number of points |
nothing calls this directly
no test coverage detected