------------------------------------------------------------------------------
| 66 | |
| 67 | //------------------------------------------------------------------------------ |
| 68 | double vtkTupleInterpolator::GetMinimumT() |
| 69 | { |
| 70 | if (this->Spline) |
| 71 | { |
| 72 | double range[2]; |
| 73 | this->Spline[0]->GetParametricRange(range); |
| 74 | return range[0]; |
| 75 | } |
| 76 | else if (this->Linear) |
| 77 | { |
| 78 | return this->Linear[0]->GetRange()[0]; |
| 79 | } |
| 80 | else |
| 81 | { |
| 82 | return 0.0; |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | //------------------------------------------------------------------------------ |
| 87 | double vtkTupleInterpolator::GetMaximumT() |