| 31 | } |
| 32 | |
| 33 | bool LNLib::ValidationUtils::IsValidNurbs(int degree, int knotVectorCount, int weightedControlPointsCount) |
| 34 | { |
| 35 | return (knotVectorCount - 1) == (weightedControlPointsCount - 1) + degree + 1; |
| 36 | } |
| 37 | |
| 38 | bool LNLib::ValidationUtils::IsValidDegreeReduction(int degree) |
| 39 | { |
nothing calls this directly
no outgoing calls
no test coverage detected