You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{
if (InternalClipper.IsAlmostZero(scale - 1)) return path;
Path64 result = newPath64(path.Count);
result.AddRange(path.Select(pt => newPoint64(pt.X * scale, pt.Y * scale))); // PR Moved the else condition here
#if USINGZ
foreach (Point64 pt in path)
result.Add(newPoint64(pt.X * scale, pt.Y * scale, pt.Z)); // in case of USINGZ vertices are added a second time
#else
#endifreturn result;
}
The text was updated successfully, but these errors were encountered:
See note
https://github.com/AngusJohnson/Clipper2/pull/895/files/63251ea069b590b36bb419b4ee8835ab133d2213#r1782788699
The text was updated successfully, but these errors were encountered: