-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Confusion between .elt and .canvas #3156
Comments
the solution to the #3155 issue is unrelated to this. the issue here is that
ok, it's a little more complicated than that. |
Thanks for the clarification! Is this correct? interface Renderable {
canvas: HTMLCanvasElement
} Some functions accept parameters of type What is the type for |
it does look a bit like that, yes. although instead of those functions accepting parameters of different types, they're invoked with i'm not sure there's anything short of major architectural reworking that can be done to fix this right now. but... my pie-in-the-sky idea: instead of
the API would mostly stay the same except for the following:
|
@Spongman highlights in #3155 that there is a confusion between the properties
.elt
and.canvas
causing us to write defensive code like so:p5.js/src/core/p5.Renderer2D.js
Line 112 in 5a46133
What is the purpose of having both
.elt
and.canvas
? How can it be that the canvas should sometimes come from.elt
and sometimes from.canvas
?Searching for
.canvas =
I get these results:p5.js/lib/addons/p5.dom.js
Line 2637 in 5a46133
p5.js/src/core/p5.Graphics.js
Line 29 in 5a46133
p5.js/src/core/p5.Renderer.js
Line 26 in 5a46133
p5.js/src/image/p5.Image.js
Line 144 in 5a46133
p5.js/src/webgl/p5.RendererGL.js
Line 176 in 5a46133
Searching for
.elt =
I get these results:p5.js/src/core/p5.Element.js
Line 44 in 5a46133
p5.js/lib/addons/p5.dom.js
Line 585 in 5a46133
p5.js/lib/addons/p5.dom.js
Line 723 in 5a46133
and a comment about checking if the canvas is associated with the p5 instance
p5.js/lib/addons/p5.dom.js
Lines 1938 to 1939 in 5a46133
Some of the places that assign canvas also assign elt afterwards, some do not.
In #3155 @Spongman solves the problem via
if (!this.canvas) this.loadPixels();
, is that a general approach we should apply elsewhere?Do we have a place where we can add (or already have?) YUIDocs for
.elt
and.canvas
?The text was updated successfully, but these errors were encountered: