------------------------------------------------------------------------------
| 136 | |
| 137 | //------------------------------------------------------------------------------ |
| 138 | void vtkCell::ShallowCopy(vtkCell* c) |
| 139 | { |
| 140 | this->Points->ShallowCopy(c->Points); |
| 141 | if (this->PointIds) |
| 142 | { |
| 143 | this->PointIds->UnRegister(this); |
| 144 | this->PointIds = c->PointIds; |
| 145 | this->PointIds->Register(this); |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | //------------------------------------------------------------------------------ |
| 150 | void vtkCell::DeepCopy(vtkCell* c) |