| 21 | } |
| 22 | |
| 23 | int LNLIB_VALID_is_valid_bezier(int degree, int control_points_count) |
| 24 | { |
| 25 | return LNLib::ValidationUtils::IsValidBezier(degree, control_points_count) ? 1 : 0; |
| 26 | } |
| 27 | |
| 28 | int LNLIB_VALID_is_valid_bspline(int degree, int knot_vector_count, int control_points_count) |
| 29 | { |
nothing calls this directly
no outgoing calls
no test coverage detected