------------------------------------------------------------------------------
| 64 | |
| 65 | //------------------------------------------------------------------------------ |
| 66 | void vtkImageActor::SetInputData(vtkImageData* input) |
| 67 | { |
| 68 | if (this->Mapper && input != this->Mapper->GetInput()) |
| 69 | { |
| 70 | this->Mapper->SetInputData(input); |
| 71 | this->Modified(); |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | //------------------------------------------------------------------------------ |
| 76 | vtkAlgorithm* vtkImageActor::GetInputAlgorithm() |