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
Currently canvas example does not run, when trying to paint a pixel it throws an error (screenshot below).
This is because when deep cloning the drp with the current approach
this.originalDRP = Object.create( Object.getPrototypeOf(drp), Object.getOwnPropertyDescriptors(structuredClone(drp)), );
comparing drp and originalDRP, the cloning converts Pixel objects to just objects with the functions, both logged below
drp
originalDRP
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Currently canvas example does not run, when trying to paint a pixel it throws an error (screenshot below).
This is because when deep cloning the drp with the current approach
comparing
drp
andoriginalDRP
, the cloning converts Pixel objects to just objects with the functions, both logged belowThe text was updated successfully, but these errors were encountered: