| 16 | |
| 17 | |
| 18 | bool LNLib::ValidationUtils::IsValidBezier(int degree, int controlPointsCount) |
| 19 | { |
| 20 | return controlPointsCount == degree + 1; |
| 21 | } |
| 22 | |
| 23 | bool LNLib::ValidationUtils::IsValidKnotVector(const std::vector<double>& knotVector) |
| 24 | { |
nothing calls this directly
no outgoing calls
no test coverage detected