From a470c951f45106177acb4abd352d5e6e07ad79c5 Mon Sep 17 00:00:00 2001 From: REAS Date: Tue, 22 Nov 2016 19:35:12 -0800 Subject: [PATCH] Clarification for image() reference based on Issue #500 --- core/src/processing/core/PGraphics.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/processing/core/PGraphics.java b/core/src/processing/core/PGraphics.java index 3ff63bdad..02b9919c7 100644 --- a/core/src/processing/core/PGraphics.java +++ b/core/src/processing/core/PGraphics.java @@ -3754,8 +3754,8 @@ public class PGraphics extends PImage implements PConstants { * * @webref image:loading_displaying * @param img the image to display - * @param a x-coordinate of the image - * @param b y-coordinate of the image + * @param a x-coordinate of the image by default + * @param b y-coordinate of the image by default * @see PApplet#loadImage(String, String) * @see PImage * @see PGraphics#imageMode(int) @@ -3783,8 +3783,8 @@ public class PGraphics extends PImage implements PConstants { } /** - * @param c width to display the image - * @param d height to display the image + * @param c width to display the image by default + * @param d height to display the image by default */ public void image(PImage img, float a, float b, float c, float d) { image(img, a, b, c, d, 0, 0, img.width, img.height);