Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaMan123 committed Jul 8, 2023
1 parent 49d85b1 commit 0e610dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/util/path/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -704,8 +704,8 @@ export const getPathSegmentsInfo = (
) {
case 'M':
tempInfo = <TPathSegmentInfoCommon<'M'>>basicInfo;
tempInfo.x = x2 = x1 = current[1];
tempInfo.y = y2 = y1 = current[2];
x2 = x1 = current[1];
y2 = y1 = current[2];
break;
case 'L':
tempInfo = <TPathSegmentInfoCommon<'L'>>basicInfo;
Expand Down

0 comments on commit 0e610dd

Please sign in to comment.