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

Function LNLIB_POLY_all_bernstein

dotnet/CAPI/src/Polynomials_CAPI.cpp:24–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22}
23
24void 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
30void LNLIB_POLY_horner_uv(
31 int degree_u,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected