| 53 | } |
| 54 | |
| 55 | int 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 | |
| 61 | int LNLIB_POLY_get_knot_multiplicity(const double* knot_vector, int knot_vector_count, double param_t) |
| 62 | { |
nothing calls this directly
no outgoing calls
no test coverage detected