Merge pull request #2373 from kreso-t/master

PathAdaptive:  bugfix
This commit is contained in:
sliptonic
2019-07-24 08:22:46 -05:00
committed by GitHub

View File

@@ -620,7 +620,7 @@ void SmoothPaths(Paths &paths, double stepSize, long pointCount, long iterations
points.push_back(pair<size_t /*path index*/, IntPoint>(i, pt));
continue;
}
const auto &back=points.back();
const auto back=points.back();
const IntPoint & lastPt = back.second;