------------------------------------------------------------------------------
| 193 | |
| 194 | //------------------------------------------------------------------------------ |
| 195 | void vtkGeneralTransform::InternalUpdate() |
| 196 | { |
| 197 | // update the input |
| 198 | if (this->Input) |
| 199 | { |
| 200 | if (this->Concatenation->GetInverseFlag()) |
| 201 | { |
| 202 | this->Input->GetInverse()->Update(); |
| 203 | } |
| 204 | else |
| 205 | { |
| 206 | this->Input->Update(); |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | // update the concatenation |
| 211 | int nTransforms = this->Concatenation->GetNumberOfTransforms(); |
| 212 | for (int i = 0; i < nTransforms; i++) |
| 213 | { |
| 214 | this->Concatenation->GetTransform(i)->Update(); |
| 215 | } |
| 216 | } |
| 217 | |
| 218 | //------------------------------------------------------------------------------ |
| 219 | void vtkGeneralTransform::Concatenate(vtkAbstractTransform* transform) |
nothing calls this directly
no test coverage detected