We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have the following Path: "...ZM...". NSScanner interprets this as a "ZM" command. The output is weird ;)
My workaround for SVGParser.swift at lines 1053:
repeat { scanner.scanCharacters(from: set, into: &pathCommandName) if pathCommandName?.length == 2 { // two commands without space, for example "ZM" let command1 = pathCommandName!.substring(to: 1) pathCommands.append( PathCommand( type: getCommandType(command1 as String), expression: "", absolute: isAbsolute(command1 as String) ) ) pathCommandName = pathCommandName!.substring(from: 1) as NSString } scanner.scanUpToCharacters(from: set, into: &pathCommandValues)
Maybe there is a nicer possibility? I don't really know NSScanner
The text was updated successfully, but these errors were encountered:
This one is fixed in the master version. Please let us know if it doesn't work for you.
Sorry, something went wrong.
Fix available in the release version, so closing this ticket.
ystrot
No branches or pull requests
I have the following Path: "...ZM...". NSScanner interprets this as a "ZM" command. The output is weird ;)
My workaround for SVGParser.swift at lines 1053:
Maybe there is a nicer possibility? I don't really know NSScanner
The text was updated successfully, but these errors were encountered: