SVGPath
SVGPath copied to clipboard
Parse SVG path strings into UIBezierPaths in Swift
line 52, `for char in string.character {` would not compile. remover "character", haven't tested but now compiles.
Hello Tim, any chance of a SVG->SwiftUI version? That would be amazing! : )
This library is great and helpful for create path from svg. But it does not support (a,A) command of svg.
While parsing any svgpath like the foll: I am getting a warning like the following: 2019-02-02 12:42:26.829502+0530 XXXX [6689:423465] [Unknown process name] **CGPathGetCurrentPoint: no current point.** and my code is:...
As sated [here](https://www.sitepoint.com/closer-look-svg-path-data/) the __moveTo__ command (m/M), when followed by more than one pair of coordinates, assumes the command to be a __lineTo__ (l/L) instead. Currently the library treats it...