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

Function LNLIB_POLY_get_knot_span_index

dotnet/CAPI/src/Polynomials_CAPI.cpp:55–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

53}
54
55int LNLIB_POLY_get_knot_span_index(int degree, const double* knot_vector, int knot_vector_count, double param_t)
56{
57 std::vector<double> kv(knot_vector, knot_vector + knot_vector_count);
58 return LNLib::Polynomials::GetKnotSpanIndex(degree, kv, param_t);
59}
60
61int LNLIB_POLY_get_knot_multiplicity(const double* knot_vector, int knot_vector_count, double param_t)
62{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected