processing / processing-website

Repository for the processing.org website
https://processing.org
GNU General Public License v2.0
68 stars 96 forks source link

Fixed semicolon in TWO_PI.pde #561

Closed joshi1983 closed 1 month ago

joshi1983 commented 1 month ago

The previous character is not a semicolon. It just looks like one. The ASCII code for a semicolon is 59. I checked the code for whatever is currently after the size(400,400) and I found 65307.

';'.charCodeAt(0)

I discovered this issue when pasting code from the example on the Processing website.

Edit: Fixes https://github.com/processing/processing-examples/issues/25

netlify[bot] commented 1 month ago

Deploy Preview for java-processing-faf822 ready!

Name Link
Latest commit c87c41c8c71356ee7e9262096b9a8e723577afca
Latest deploy log https://app.netlify.com/sites/java-processing-faf822/deploys/66fdf2ffc64ce0000876aee7
Deploy Preview https://deploy-preview-561--java-processing-faf822.netlify.app
Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

SableRaf commented 1 month ago

Great catch! Thanks for your contribution 😀