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

Function LNLIB_POLY_one_basis_function

dotnet/CAPI/src/Polynomials_CAPI.cpp:149–154  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

147}
148
149double LNLIB_POLY_one_basis_function(int span_index, int degree, const double* knot_vector, int knot_vector_count, double param_t)
150{
151 std::vector<double> kv(knot_vector, knot_vector + knot_vector_count);
152 double val = LNLib::Polynomials::OneBasisFunction(span_index, degree, kv, param_t);
153 return val;
154}
155
156void LNLIB_POLY_one_basis_function_derivative(
157 int span_index,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected