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

Function FunctionValues

Common/Math/vtkFunctionSet.h:38–38  ·  view source on GitHub ↗

* Evaluate functions at x_j. * x and f have to point to valid double arrays of appropriate * sizes obtained with GetNumberOfFunctions() and * GetNumberOfIndependentVariables. * If you inherit this class, make sure to reimplement at least one of the two * FunctionValues signatures. */

Source from the content-addressed store, hash-verified

36 * FunctionValues signatures.
37 */
38 virtual int FunctionValues(double* x, double* f) { return this->FunctionValues(x, f, nullptr); }
39 virtual int FunctionValues(double* x, double* f, void* vtkNotUsed(userData))
40 {
41 return this->FunctionValues(x, f);

Callers

nothing calls this directly

Calls 1

FunctionValuesMethod · 0.45

Tested by

no test coverage detected