------------------------------------------------------------------------------
| 792 | |
| 793 | //------------------------------------------------------------------------------ |
| 794 | vtkColorTransferFunction* vtkVolumeProperty::GetLabelColor(int label) |
| 795 | { |
| 796 | if (this->LabelColor.count(label) == 0) |
| 797 | { |
| 798 | return nullptr; |
| 799 | } |
| 800 | return this->LabelColor[label]; |
| 801 | } |
| 802 | |
| 803 | //------------------------------------------------------------------------------ |
| 804 | void vtkVolumeProperty::SetLabelScalarOpacity(int label, vtkPiecewiseFunction* function) |
no test coverage detected