------------------------------------------------------------------------------
| 258 | |
| 259 | //------------------------------------------------------------------------------ |
| 260 | int vtkTransform::CircuitCheck(vtkAbstractTransform* transform) |
| 261 | { |
| 262 | if (this->vtkLinearTransform::CircuitCheck(transform) || |
| 263 | (this->Input && this->Input->CircuitCheck(transform))) |
| 264 | { |
| 265 | return 1; |
| 266 | } |
| 267 | |
| 268 | int n = this->Concatenation->GetNumberOfTransforms(); |
| 269 | for (int i = 0; i < n; i++) |
| 270 | { |
| 271 | if (this->Concatenation->GetTransform(i)->CircuitCheck(transform)) |
| 272 | { |
| 273 | return 1; |
| 274 | } |
| 275 | } |
| 276 | |
| 277 | return 0; |
| 278 | } |
| 279 | |
| 280 | //------------------------------------------------------------------------------ |
| 281 | vtkAbstractTransform* vtkTransform::MakeTransform() |
no test coverage detected