MCPcopy Create free account
hub / github.com/Kitware/VTK / SetVectorComponent

Method SetVectorComponent

Rendering/VolumeOpenGL2/vtkMultiBlockVolumeMapper.cxx:515–527  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

513
514//------------------------------------------------------------------------------
515void 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//------------------------------------------------------------------------------
530void vtkMultiBlockVolumeMapper::SetRequestedRenderMode(int mode)

Callers 8

SetStateInMapperMethod · 0.45
CreateMapperMethod · 0.45
RenderMethod · 0.45
BuildMethod · 0.45
PrepareColormapMethod · 0.45

Calls 3

endMethod · 0.45
beginMethod · 0.45
ModifiedMethod · 0.45