MCPcopy Create free account
hub / github.com/BIMCoderLiang/LNLib / LNLIB_POLY_horner

Function LNLIB_POLY_horner

dotnet/CAPI/src/Polynomials_CAPI.cpp:49–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47}
48
49double LNLIB_POLY_horner(int degree, const double* coefficients, int coeff_count, double param_t)
50{
51 std::vector<double> coeffs(coefficients, coefficients + coeff_count);
52 return LNLib::Polynomials::Horner(degree, coeffs, param_t);
53}
54
55int LNLIB_POLY_get_knot_span_index(int degree, const double* knot_vector, int knot_vector_count, double param_t)
56{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected