| 132 | } |
| 133 | |
| 134 | std::map<double, int> LNLib::KnotVectorUtils::GetInternalKnotMultiplicityMap(const std::vector<double>& knotVector) |
| 135 | { |
| 136 | auto result = GetKnotMultiplicityMap(knotVector); |
| 137 | if (!result.empty()) |
| 138 | { |
| 139 | result.erase(result.begin()); |
| 140 | auto lastElementIterator = prev(result.end(), 1); |
| 141 | result.erase(lastElementIterator); |
| 142 | } |
| 143 | return result; |
| 144 | } |
| 145 | |
| 146 | void LNLib::KnotVectorUtils::GetInsertedKnotElement(const std::vector<double>& knotVector0, const std::vector<double>& knotVector1, std::vector<double>& insertElements0, std::vector<double>& insertElements1) |
| 147 | { |
nothing calls this directly
no outgoing calls
no test coverage detected