-
Notifications
You must be signed in to change notification settings - Fork 103
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
Reference documentation, problem in code example given for PImage.height #605
Comments
Hi @MegaCurious and thanks for reporting this issue. I see this is your first one on GitHub. Congratulations and welcome! For reference, the file with the code for this example is located here: /content/references/examples/processing/PImage_height/PImage_height.pde Would you like to help resolve this issue? I'll be happy to offer any guidance on making your first contribution. |
Thanks for the reply and invite, SableRalph!
I'm down a rabbit hole at the moment but if nobody has gotten to it by the
time I come back I would be happy to give it a go - I'll let you know.
- Heather
…On Thu, Jan 23, 2025 at 2:03 PM Raphaël de Courville < ***@***.***> wrote:
Hi @MegaCurious <https://github.com/MegaCurious> and thanks for reporting
this issue. I see this is your first one on GitHub. Congratulations and
welcome!
For reference, the file with the code for this example is located here:
/content/references/examples/processing/PImage_height/PImage_height.pde
<https://github.com/processing/processing-website/blob/main/content/references/examples/processing/PImage_height/PImage_height.pde>
Would you like to help resolve this issue? I'll be happy to offer any
guidance on making your first contribution.
—
Reply to this email directly, view it on GitHub
<#605 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACTEPQP3DPXU4JXNUNES5Q32MDZC5AVCNFSM6AAAAABVXKQLISVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDMMBZHA4TAMRUG4>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Sorry - just saw it's SableRaph not SableRalph
atb
Heather
On Tue, Jan 28, 2025 at 1:50 PM Heather Stark <
***@***.***> wrote:
… Thanks for the reply and invite, SableRalph!
I'm down a rabbit hole at the moment but if nobody has gotten to it by the
time I come back I would be happy to give it a go - I'll let you know.
- Heather
On Thu, Jan 23, 2025 at 2:03 PM Raphaël de Courville <
***@***.***> wrote:
> Hi @MegaCurious <https://github.com/MegaCurious> and thanks for
> reporting this issue. I see this is your first one on GitHub.
> Congratulations and welcome!
>
> For reference, the file with the code for this example is located here:
>
> /content/references/examples/processing/PImage_height/PImage_height.pde
> <https://github.com/processing/processing-website/blob/main/content/references/examples/processing/PImage_height/PImage_height.pde>
>
> Would you like to help resolve this issue? I'll be happy to offer any
> guidance on making your first contribution.
>
> —
> Reply to this email directly, view it on GitHub
> <#605 (comment)>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/ACTEPQP3DPXU4JXNUNES5Q32MDZC5AVCNFSM6AAAAABVXKQLISVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDMMBZHA4TAMRUG4>
> .
> You are receiving this because you were mentioned.Message ID:
> ***@***.***>
>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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: