------------------------------------------------------------------------------
| 513 | |
| 514 | //------------------------------------------------------------------------------ |
| 515 | void vtkMultiBlockVolumeMapper::SetVectorComponent(int component) |
| 516 | { |
| 517 | if (this->VectorComponent != component) |
| 518 | { |
| 519 | MapperVec::const_iterator end = this->Mappers.end(); |
| 520 | for (MapperVec::const_iterator it = this->Mappers.begin(); it != end; ++it) |
| 521 | { |
| 522 | (*it)->SetVectorComponent(component); |
| 523 | } |
| 524 | this->VectorComponent = component; |
| 525 | this->Modified(); |
| 526 | } |
| 527 | } |
| 528 | |
| 529 | //------------------------------------------------------------------------------ |
| 530 | void vtkMultiBlockVolumeMapper::SetRequestedRenderMode(int mode) |