------------------------------------------------------------------------------ Replace the points defining cell "cellId" with a new set of points. This operator is (typically) used when links from points to cells have not been built (i.e., BuildLinks() has not been executed). Use the operator ReplaceLinkedCell() to replace a cell when cell structure has been built.
| 1261 | // built (i.e., BuildLinks() has not been executed). Use the operator |
| 1262 | // ReplaceLinkedCell() to replace a cell when cell structure has been built. |
| 1263 | void vtkUnstructuredGrid::InternalReplaceCell(vtkIdType cellId, int npts, const vtkIdType pts[]) |
| 1264 | { |
| 1265 | this->Connectivity->ReplaceCellAtId(cellId, npts, pts); |
| 1266 | } |
| 1267 | |
| 1268 | //------------------------------------------------------------------------------ |
| 1269 | // Add a new cell to the cell data structure (after cell links have been |
no test coverage detected