Remove a function from the list of implicit functions to boolean.
| 50 | |
| 51 | // Remove a function from the list of implicit functions to boolean. |
| 52 | void vtkImplicitBoolean::RemoveFunction(vtkImplicitFunction* f) |
| 53 | { |
| 54 | if (this->FunctionList->IndexOfFirstOccurrence(f) >= 0) |
| 55 | { |
| 56 | this->Modified(); |
| 57 | this->FunctionList->RemoveItem(f); |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | // Evaluate boolean combinations of implicit function using current operator. |
| 62 | double vtkImplicitBoolean::EvaluateFunction(double x[3]) |
nothing calls this directly
no test coverage detected