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
Original PR by @SaumyaKarnwal at benfry/processing4#816
Issue link : #750 (comment)
Problem : It wasn't able to parse exponents leading to ArrayIndexOutOfBoundsException
Solution : handled that edge case. it will now be able to parse values such as 6.2e-4
Behavior after modification:
processing4/core/src/processing/core/PShapeSVG.java
Line 546 in 162554f
-- else if (isOnDecimal && (c < '0' || c > '9')) { ++ else if (isOnDecimal && (c < '0' || c > '9') && c!='e' && c!='-') {
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Original PR by @SaumyaKarnwal at benfry/processing4#816
Issue link : #750 (comment)
Problem : It wasn't able to parse exponents leading to ArrayIndexOutOfBoundsException
Solution : handled that edge case. it will now be able to parse values such as 6.2e-4
Behavior after modification:
Diff
processing4/core/src/processing/core/PShapeSVG.java
Line 546 in 162554f
The text was updated successfully, but these errors were encountered: