* Set a particular contour value at contour number i. The index i ranges * between 0<=i<NumberOfContours. */
| 154 | * between 0<=i<NumberOfContours. |
| 155 | */ |
| 156 | inline void vtkImageMarchingCubes::SetValue(int i, double value) |
| 157 | { |
| 158 | this->ContourValues->SetValue(i, value); |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * Get the ith contour value. |
no outgoing calls