------------------------------------------------------------------------------
| 497 | |
| 498 | //------------------------------------------------------------------------------ |
| 499 | void vtkGenericCell::SetPoints(vtkPoints* points) |
| 500 | { |
| 501 | if (points != this->Points) |
| 502 | { |
| 503 | this->Points->Delete(); |
| 504 | this->Points = points; |
| 505 | this->Points->Register(this); |
| 506 | this->Cell->Points->Delete(); |
| 507 | this->Cell->Points = points; |
| 508 | this->Cell->Points->Register(this); |
| 509 | } |
| 510 | } |
| 511 | |
| 512 | //------------------------------------------------------------------------------ |
| 513 | void vtkGenericCell::SetPointIds(vtkIdList* pointIds) |