From dc69bc38135fc0d892ddea409893b225448c22dd Mon Sep 17 00:00:00 2001 From: Ben Fry Date: Wed, 30 Nov 2016 12:09:34 -0500 Subject: [PATCH] documentation auto-update --- core/src/processing/core/PApplet.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/processing/core/PApplet.java b/core/src/processing/core/PApplet.java index b10ac209c..2f2818fad 100644 --- a/core/src/processing/core/PApplet.java +++ b/core/src/processing/core/PApplet.java @@ -12322,8 +12322,8 @@ public class PApplet 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) @@ -12338,8 +12338,8 @@ public class PApplet 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) { if (recorder != null) recorder.image(img, a, b, c, d);