MCPcopy Create free account
hub / github.com/Kitware/VTK / RemoveFunction

Method RemoveFunction

Common/DataModel/vtkImplicitBoolean.cxx:52–59  ·  view source on GitHub ↗

Remove a function from the list of implicit functions to boolean.

Source from the content-addressed store, hash-verified

50
51// Remove a function from the list of implicit functions to boolean.
52void 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.
62double vtkImplicitBoolean::EvaluateFunction(double x[3])

Callers

nothing calls this directly

Calls 3

ModifiedMethod · 0.45
RemoveItemMethod · 0.45

Tested by

no test coverage detected