------------------------------------------------------------------------------
| 679 | |
| 680 | //------------------------------------------------------------------------------ |
| 681 | void vtkVolumeProperty::SetDiffuse(int index, double value) |
| 682 | { |
| 683 | if (this->Diffuse[index] != value) |
| 684 | { |
| 685 | this->Diffuse[index] = value; |
| 686 | this->Modified(); |
| 687 | } |
| 688 | } |
| 689 | |
| 690 | //------------------------------------------------------------------------------ |
| 691 | double vtkVolumeProperty::GetDiffuse(int index) |