| 14 | #include <map> |
| 15 | |
| 16 | int LNLIB_KV_get_continuity( |
| 17 | int degree, |
| 18 | const double* knot_vector, |
| 19 | int knot_vector_count, |
| 20 | double knot) |
| 21 | { |
| 22 | std::vector<double> kv(knot_vector, knot_vector + knot_vector_count); |
| 23 | return LNLib::KnotVectorUtils::GetContinuity(degree, kv, knot); |
| 24 | } |
| 25 | |
| 26 | void LNLIB_KV_rescale( |
| 27 | const double* knot_vector, |
nothing calls this directly
no outgoing calls
no test coverage detected