| 224 | //------------------------------------------------------------------------------ |
| 225 | |
| 226 | void vtkIterativeClosestPointTransform::InternalDeepCopy(vtkAbstractTransform* transform) |
| 227 | { |
| 228 | vtkIterativeClosestPointTransform* t = (vtkIterativeClosestPointTransform*)transform; |
| 229 | |
| 230 | this->SetSource(t->GetSource()); |
| 231 | this->SetTarget(t->GetTarget()); |
| 232 | this->SetLocator(t->GetLocator()); |
| 233 | this->SetMaximumNumberOfIterations(t->GetMaximumNumberOfIterations()); |
| 234 | this->SetCheckMeanDistance(t->GetCheckMeanDistance()); |
| 235 | this->SetMeanDistanceMode(t->GetMeanDistanceMode()); |
| 236 | this->SetMaximumMeanDistance(t->GetMaximumMeanDistance()); |
| 237 | this->SetMaximumNumberOfLandmarks(t->GetMaximumNumberOfLandmarks()); |
| 238 | |
| 239 | this->Modified(); |
| 240 | } |
| 241 | |
| 242 | //------------------------------------------------------------------------------ |
| 243 |
nothing calls this directly
no test coverage detected