| 31 | } |
| 32 | |
| 33 | int LNLIB_VALID_is_valid_nurbs(int degree, int knot_vector_count, int control_points_count) |
| 34 | { |
| 35 | return LNLib::ValidationUtils::IsValidNurbs(degree, knot_vector_count, control_points_count) ? 1 : 0; |
| 36 | } |
| 37 | |
| 38 | double LNLIB_VALID_compute_curve_modify_tolerance( |
| 39 | const XYZW_C* control_points, |
nothing calls this directly
no outgoing calls
no test coverage detected