------------------------------------------------------------------------------ Add another implicit function to the list of functions.
| 52 | //------------------------------------------------------------------------------ |
| 53 | // Add another implicit function to the list of functions. |
| 54 | void vtkImplicitSum::AddFunction(vtkImplicitFunction* f, double scale) |
| 55 | { |
| 56 | this->Modified(); |
| 57 | this->FunctionList->AddItem(f); |
| 58 | this->Weights->InsertNextValue(scale); |
| 59 | this->CalculateTotalWeight(); |
| 60 | } |
| 61 | |
| 62 | //------------------------------------------------------------------------------ |
| 63 | void vtkImplicitSum::SetFunctionWeight(vtkImplicitFunction* f, double scale) |
no test coverage detected