Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
KTibow committed Nov 24, 2023
1 parent 788b01b commit aa39747
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/convertPathData.js
Original file line number Diff line number Diff line change
Expand Up @@ -843,9 +843,9 @@ function filters(
params.removeUseless &&
isSafeToUseZ &&
// @ts-ignore
Math.abs(item.base[0] - item.coords[0]) < (error / 16) &&
Math.abs(item.base[0] - item.coords[0]) < error / 10 &&
// @ts-ignore
Math.abs(item.base[1] - item.coords[1]) < (error / 16)
Math.abs(item.base[1] - item.coords[1]) < error / 10
)
return false;

Expand Down

0 comments on commit aa39747

Please sign in to comment.