| 47 | } |
| 48 | |
| 49 | double 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 | |
| 55 | int LNLIB_POLY_get_knot_span_index(int degree, const double* knot_vector, int knot_vector_count, double param_t) |
| 56 | { |
nothing calls this directly
no outgoing calls
no test coverage detected