| 147 | } |
| 148 | |
| 149 | double 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 | |
| 156 | void LNLIB_POLY_one_basis_function_derivative( |
| 157 | int span_index, |
nothing calls this directly
no outgoing calls
no test coverage detected