| 22 | } |
| 23 | |
| 24 | void LNLIB_POLY_all_bernstein(int degree, double param_t, double* out_array) |
| 25 | { |
| 26 | auto result = LNLib::Polynomials::AllBernstein(degree, param_t); |
| 27 | std::memcpy(out_array, result.data(), (degree + 1) * sizeof(double)); |
| 28 | } |
| 29 | |
| 30 | void LNLIB_POLY_horner_uv( |
| 31 | int degree_u, |
nothing calls this directly
no outgoing calls
no test coverage detected