------------------------------------------------------------------------------
| 148 | |
| 149 | //------------------------------------------------------------------------------ |
| 150 | void vtkCell::DeepCopy(vtkCell* c) |
| 151 | { |
| 152 | this->Points->DeepCopy(c->Points); |
| 153 | this->PointIds->DeepCopy(c->PointIds); |
| 154 | } |
| 155 | |
| 156 | //------------------------------------------------------------------------------ |
| 157 | double vtkCell::ComputeBoundingSphere(double center[3]) const |
no outgoing calls