Add another implicit function to the list of functions.
| 40 | |
| 41 | // Add another implicit function to the list of functions. |
| 42 | void vtkImplicitBoolean::AddFunction(vtkImplicitFunction* f) |
| 43 | { |
| 44 | if (this->FunctionList->IndexOfFirstOccurrence(f) < 0) |
| 45 | { |
| 46 | this->Modified(); |
| 47 | this->FunctionList->AddItem(f); |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | // Remove a function from the list of implicit functions to boolean. |
| 52 | void vtkImplicitBoolean::RemoveFunction(vtkImplicitFunction* f) |
nothing calls this directly
no test coverage detected