You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code example given in reference section for Pimage_height doesn’t have any mention at all of height in it. It should be updated to be relevant to the heading under which it occurs.
Suggested correction
Perhaps the content could be updated to be parallel in structure to the documentation for Pimage_width
Language
English
Screenshots or references
// this is the code example given, which does not illustrate how PImage.height works and does not even reference it
Select the type of content error.
Factual Mistake
Section
Reference
Location of the error
content/references/examples/processing/PImage_height/PImage_height.pde
Describe the error
The code example given in reference section for Pimage_height doesn’t have any mention at all of height in it. It should be updated to be relevant to the heading under which it occurs.
Suggested correction
Perhaps the content could be updated to be parallel in structure to the documentation for Pimage_width
Language
English
Screenshots or references
// this is the code example given, which does not illustrate how PImage.height works and does not even reference it
PImage photo;
void setup() {
size(400, 400);
photo = loadImage("mt-horai.jpg");
}
void draw() {
image(photo, 0, 0);
}
Additional context
No response
The text was updated successfully, but these errors were encountered: