* Set a particular contour value at contour number i. The index i ranges * between 0 <= i <NumberOfContours. (Note: while contour values are * expressed as doubles, the underlying scalar data may be a different * type. During execution the contour values are static cast to the type of * the scalar values.) */
| 75 | * the scalar values.) |
| 76 | */ |
| 77 | void SetValue(int i, double value) { this->ContourValues->SetValue(i, value); } |
| 78 | |
| 79 | /** |
| 80 | * Get the ith contour value. |