------------------------------------------------------------------------------
| 327 | |
| 328 | //------------------------------------------------------------------------------ |
| 329 | void vtkDiscretizableColorTransferFunction::GetColor(double v, double rgb[3]) |
| 330 | { |
| 331 | this->Build(); |
| 332 | if (this->Discretize || this->IndexedLookup) |
| 333 | { |
| 334 | this->LookupTable->GetColor(v, rgb); |
| 335 | } |
| 336 | else |
| 337 | { |
| 338 | this->Superclass::GetColor(v, rgb); |
| 339 | } |
| 340 | } |
| 341 | |
| 342 | //------------------------------------------------------------------------------ |
| 343 | double vtkDiscretizableColorTransferFunction::GetOpacity(double v) |