------------------------------------------------------------------------------
| 598 | |
| 599 | //------------------------------------------------------------------------------ |
| 600 | double vtkPiecewiseFunction::GetValue(double x) |
| 601 | { |
| 602 | double table[1]; |
| 603 | this->GetTable(x, x, 1, table); |
| 604 | return table[0]; |
| 605 | } |
| 606 | |
| 607 | //------------------------------------------------------------------------------ |
| 608 | int vtkPiecewiseFunction::AdjustRange(double range[2]) |