| 36 | } |
| 37 | |
| 38 | int LNLIB_KV_is_uniform( |
| 39 | const double* knot_vector, |
| 40 | int knot_vector_count) |
| 41 | { |
| 42 | std::vector<double> kv(knot_vector, knot_vector + knot_vector_count); |
| 43 | return LNLib::KnotVectorUtils::IsUniform(kv) ? 1 : 0; |
| 44 | } |
| 45 | |
| 46 | void LNLIB_KV_get_knot_multiplicity_map( |
| 47 | const double* knot_vector, |
nothing calls this directly
no outgoing calls
no test coverage detected