* Set the number of contours to place into the list. You only really * need to use this method to reduce list size. The method SetValue() * will automatically increase list size as needed. */
| 191 | * will automatically increase list size as needed. |
| 192 | */ |
| 193 | inline void vtkImageMarchingCubes::SetNumberOfContours(int number) |
| 194 | { |
| 195 | this->ContourValues->SetNumberOfContours(number); |
| 196 | } |
| 197 | |
| 198 | /** |
| 199 | * Get the number of contours in the list of contour values. |
no outgoing calls
no test coverage detected