| 26 | } |
| 27 | |
| 28 | bool LNLib::ValidationUtils::IsValidBspline(int degree, int knotVectorCount, int controlPointsCount) |
| 29 | { |
| 30 | return (knotVectorCount - 1) == (controlPointsCount - 1) + degree + 1; |
| 31 | } |
| 32 | |
| 33 | bool LNLib::ValidationUtils::IsValidNurbs(int degree, int knotVectorCount, int weightedControlPointsCount) |
| 34 | { |
nothing calls this directly
no outgoing calls
no test coverage detected