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

Method AddFunction

Common/DataModel/vtkImplicitBoolean.cxx:42–49  ·  view source on GitHub ↗

Add another implicit function to the list of functions.

Source from the content-addressed store, hash-verified

40
41// Add another implicit function to the list of functions.
42void 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.
52void vtkImplicitBoolean::RemoveFunction(vtkImplicitFunction* f)

Callers

nothing calls this directly

Calls 3

ModifiedMethod · 0.45
AddItemMethod · 0.45

Tested by

no test coverage detected