-
-
Notifications
You must be signed in to change notification settings - Fork 70
error when calling smooth() on PGraphics #272
New issue
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
Comments
Created by: KevinWorkman I noticed the same problem, but with I filed a bug in the old repo before I realized this new repo existed, maybe it'll help with debugging: processing/processing#6227 |
Created by: KevinWorkman Also, I just confirmed that going back to Processing 3 gets rid of the error. |
Created by: benfry @sampottinger is this a preprocessor regression? |
In GitLab by @pavlus1 on Oct 7, 2021, 20:53 Seems to originate here:
|
Created by: sampottinger It might be @benfry ill take a look |
Created by: github-actions[bot] This issue has been automatically locked. To avoid confusion with reports that have already been resolved, closed issues are automatically locked 30 days after the last comment. Please open a new issue for related bugs. |
In GitLab by @grauwald on Sep 23, 2021, 23:31
Description
When attempting to set
smooth()
on a PGraphics instance an error is thrown.Expected Behavior
The processing JavaDocs show that a PGraphics instance can receive
smooth()
Current Behavior
Calling
smooth()
on aPGraphics
instance throws the following error:Steps to Reproduce
Your Environment
Possible Causes / Solutions
smooth()
works fine when applied to the top level of the app and seems to apply itself to subsequentPGraphics
within. There is some mention that in Processing 3+ thatsmooth()
can only be run once during setup. Perhaps there is a usage issue withsmooth()
and that it should be removed from thePGraphics
spec.The text was updated successfully, but these errors were encountered: