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
You need to keep track of a point variable lastMovePoint and add the line:
currentPoint = Object.assign({}, lastMovePoint);
Otherwise a path such as m 1,1 2,2 3,3 Z m 1,1 2,2 3,3 Z won't import properly (specifically, the second relative 'm' command will use 3,3 as its current point, when really it should be using 1,1).
The text was updated successfully, but these errors were encountered:
I think before the break statement here:
AndroidIconAnimator/app/scripts/SvgPathData.js
Line 601 in 695b10f
You need to keep track of a point variable
lastMovePoint
and add the line:Otherwise a path such as
m 1,1 2,2 3,3 Z m 1,1 2,2 3,3 Z
won't import properly (specifically, the second relative 'm' command will use3,3
as its current point, when really it should be using1,1
).The text was updated successfully, but these errors were encountered: