------------------------------------------------------------------------------ Returns the red color evaluated at the specified location
| 750 | //------------------------------------------------------------------------------ |
| 751 | // Returns the red color evaluated at the specified location |
| 752 | double vtkColorTransferFunction::GetRedValue(double x) |
| 753 | { |
| 754 | double rgb[3]; |
| 755 | this->GetColor(x, rgb); |
| 756 | |
| 757 | return rgb[0]; |
| 758 | } |
| 759 | |
| 760 | //------------------------------------------------------------------------------ |
| 761 | // Returns the green color evaluated at the specified location |