[Path] fix a typo

This commit is contained in:
Uwe
2022-03-12 02:24:44 +01:00
parent 045eafd062
commit 5d798e26cf

View File

@@ -2740,7 +2740,7 @@ void Adaptive2d::ProcessPolyNode(Paths boundPaths, Paths toolBoundPaths)
size_t clpPathIndex;
size_t clpSegmentIndex;
double clpParamter;
double clpParameter;
double passLength = 0;
double noCutDistance=0;
clearedBeforePass.SetClearedPaths(cleared.GetCleared());
@@ -2756,7 +2756,7 @@ void Adaptive2d::ProcessPolyNode(Paths boundPaths, Paths toolBoundPaths)
AverageDirection(gyro, toolDir);
Perf_DistanceToBoundary.Start();
double distanceToBoundary = sqrt(DistancePointToPathsSqrd(toolBoundPaths, toolPos, clp, clpPathIndex, clpSegmentIndex, clpParamter));
double distanceToBoundary = sqrt(DistancePointToPathsSqrd(toolBoundPaths, toolPos, clp, clpPathIndex, clpSegmentIndex, clpParameter));
DoublePoint boundaryDir = GetPathDirectionV(toolBoundPaths[clpPathIndex], clpSegmentIndex);
double distBoundaryPointToEngage = sqrt(DistanceSqrd(clp, engagePoint));
@@ -2989,7 +2989,7 @@ void Adaptive2d::ProcessPolyNode(Paths boundPaths, Paths toolBoundPaths)
Paths remaining;
for (const auto &p : cleared.GetCleared())
{
if (!p.empty() && IsPointWithinCutRegion(toolBoundPaths, p.front()) && DistancePointToPathsSqrd(boundPaths, p.front(), clp, clpPathIndex, clpSegmentIndex, clpParamter) > 4 * toolRadiusScaled * toolRadiusScaled)
if (!p.empty() && IsPointWithinCutRegion(toolBoundPaths, p.front()) && DistancePointToPathsSqrd(boundPaths, p.front(), clp, clpPathIndex, clpSegmentIndex, clpParameter) > 4 * toolRadiusScaled * toolRadiusScaled)
{
remaining.push_back(p);
}