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
Let me start by saying, great work on the library.
No disrespect, but to call it highly optimized SVG nodes is kind of funny, I thought it would be made by drawing lines with L or l but nope, it goes point to point and then end the path with 'z'.
After looking into it further, I realize it could be done using stroke-dasharray and since it alternate between black and white, one can much easier understand what's happening compare to the "M h V h v z" 'black magic' of a path.
It also goes from forward to back instead of back to forward.
Let me start by saying, great work on the library.
No disrespect, but to call it
highly optimized SVG nodes
is kind of funny, I thought it would be made by drawing lines withL
orl
but nope, it goes point to point and then end the path with 'z'.After looking into it further, I realize it could be done using
stroke-dasharray
and since it alternate between black and white, one can much easier understand what's happening compare to the "M h V h v z" 'black magic' of a path.It also goes from forward to back instead of back to forward.
Example using
123
The text was updated successfully, but these errors were encountered: