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

Method ColorByArrayComponent

Rendering/Core/vtkMapper.cxx:547–559  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

545}
546
547void vtkMapper::ColorByArrayComponent(int arrayNum, int component)
548{
549 if (this->ArrayId == arrayNum && component == this->ArrayComponent &&
550 this->ArrayAccessMode == VTK_GET_ARRAY_BY_ID)
551 {
552 return;
553 }
554 this->Modified();
555
556 this->ArrayId = arrayNum;
557 this->ArrayComponent = component;
558 this->ArrayAccessMode = VTK_GET_ARRAY_BY_ID;
559}
560
561void vtkMapper::ColorByArrayComponent(const char* arrayName, int component)
562{

Callers 15

ShallowCopyMethod · 0.95
SelectColorArrayMethod · 0.95
WriteAnActorMethod · 0.45
WriteAPieceMethod · 0.45
SLACReaderLinearFunction · 0.45
SLACReaderQuadraticFunction · 0.45
SLACMultipleModesFunction · 0.45
SLACParticleReaderFunction · 0.45
PSLACReaderLinearMethodFunction · 0.45
loadAndRenderMethod · 0.45
EnSightCompound.pyFile · 0.45

Calls 2

ModifiedMethod · 0.45
SetArrayNameMethod · 0.45