------------------------------------------------------------------------------
| 511 | |
| 512 | //------------------------------------------------------------------------------ |
| 513 | void vtkGenericCell::SetPointIds(vtkIdList* pointIds) |
| 514 | { |
| 515 | if (pointIds != this->PointIds) |
| 516 | { |
| 517 | this->PointIds->Delete(); |
| 518 | this->PointIds = pointIds; |
| 519 | this->PointIds->Register(this); |
| 520 | this->Cell->PointIds->Delete(); |
| 521 | this->Cell->PointIds = pointIds; |
| 522 | this->Cell->PointIds->Register(this); |
| 523 | } |
| 524 | } |
| 525 | VTK_ABI_NAMESPACE_END |
no test coverage detected